UNPKG

@amaui/ui-react

Version:
16 lines (15 loc) 382 B
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;