interface IPage404 {
    heading?: string;
    content?: string;
    link?: string;
}
declare const Page404: ({ heading, content, link, }: IPage404) => import("react/jsx-runtime").JSX.Element;
export default Page404;
