import React from 'react'; interface PageProps { children: React.ReactNode; } declare function Page(props: PageProps): JSX.Element; export { Page };