import { ReactNode } from 'react'; import CSS from 'csstype'; declare function FlexPage({ children, margin, style, bounderStyle }: { style?: CSS.Properties; bounderStyle?: CSS.Properties; children: ReactNode; margin?: string; }): JSX.Element; export default FlexPage;