import React from 'react'; declare type LayoutMainProps = { children?: React.ReactNode; className?: string; }; export declare const LayoutMain: ({ children, className, ...props }: LayoutMainProps) => JSX.Element; export {};