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