import { HTMLAttributes, ReactNode } from 'react'; export type PageProps = HTMLAttributes & { header?: ReactNode; footer?: ReactNode; backgroundColor?: string; }; export { Page as default } from './page';