@amaui/ui-react
Version:
UI for React
16 lines (15 loc) • 382 B
TypeScript
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;