import type { Snippet } from 'svelte';
interface Props {
    h1?: Snippet;
    paragraph?: Snippet;
    divClass?: string;
    h1Class?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: h1: any;
 * @props:paragraph: any;
 * @props:divClass: any;
 * @props:h1Class: any;
 */
declare const Page404: import("svelte").Component<Props, {}, "">;
type Page404 = ReturnType<typeof Page404>;
export default Page404;
