import React from 'react'; type PageProps = { children?: React.ReactNode; open?: boolean; initial: boolean; prevDepth?: number; currentDepth?: number; enterAnim?: string; exitAnim?: string; }; declare const Page: React.FC; export default Page;