import React, { PropsWithChildren } from 'react'; /** @public */ export type BackstageContentClassKey = 'root' | 'stretch' | 'noPadding'; type Props = { stretch?: boolean; noPadding?: boolean; className?: string; }; /** * The main content part inside a {@link Page}. * * @public * */ export declare function Content(props: PropsWithChildren): React.JSX.Element; export {};