import React from 'react';
import { ISection } from '../Section/Section';
export interface INotFound extends ISection {
    name?: any;
    href?: string;
    to?: string;
    start?: any;
    end?: any;
    renderButton?: (props: any) => any;
    fullHeight?: any;
    ButtonProps?: any;
    TypeProps?: any;
}
declare const NotFound: React.FC<INotFound>;
export default NotFound;
