import { ReactNode } from 'react'; import CSS from 'csstype'; declare function Page({ children, contentStyle, itemMinWidth, placeItems, alignContent, alignItems, justifyContent, justifyItems, gap, colGap, rowGap, margin, itemMaxWidth }: { itemMinWidth?: string; itemMaxWidth?: string; contentStyle?: CSS.Properties; placeItems?: 'start' | 'end' | 'center' | 'stretch'; alignItems?: 'start' | 'end' | 'center' | 'stretch'; justifyItems?: 'start' | 'end' | 'center' | 'stretch'; justifyContent?: 'start' | 'end' | 'center' | 'stretch' | 'space-around' | 'space-between' | 'space-evenly'; alignContent?: 'start' | 'end' | 'center' | 'stretch' | 'space-around' | 'space-between' | 'space-evenly'; gap?: string; colGap?: string; rowGap?: string; children: ReactNode; margin?: string; }): JSX.Element; export default Page;