/**
 * @file 404
 * @author fex
 */
import type { PropsWithChildren } from 'react';
import React from 'react';
export interface NotFoundProps extends PropsWithChildren {
    code?: string | number;
    description?: string;
    links?: React.ReactNode;
    footerText?: React.ReactNode;
}
export declare class NotFound extends React.Component<NotFoundProps, any> {
    render(): JSX.Element;
}
