export type Page404Props = {
    title?: string;
    description?: string;
    small?: boolean;
    action?: boolean;
    link?: {
        url: string;
        text: string;
        icone?: string;
    };
};
export declare function Page404({ title, description, action, small, link }: Page404Props): import("react/jsx-runtime").JSX.Element;
