import { ReactNode } from 'react';
import { PublicComponentProps } from './types';
export interface FourOhFourProps extends PublicComponentProps {
    /**
     * Text to give a user suggestions for next steps when the get a 404 error.
     */
    message?: ReactNode;
}
export declare const FourOhFour: ({ message, className, ...rest }: FourOhFourProps) => JSX.Element;
//# sourceMappingURL=FourOhFour.d.ts.map