import { ReactNode, ComponentPropsWithoutRef } from 'react'; export interface PageLayoutMainProps extends ComponentPropsWithoutRef<'div'> { /** * The content of the PageLayout.Main */ children: ReactNode; } export declare function PageLayoutMain({ children, className, ...rest }: PageLayoutMainProps): import("react/jsx-runtime").JSX.Element; export declare namespace PageLayoutMain { var displayName: string; }