import * as React from 'react'; import { NotFoundError } from 'navi'; export interface NotFoundBoundaryProps { render: (error: NotFoundError) => React.ReactNode; children?: React.ReactNode | undefined; } export declare namespace NotFoundBoundary { type Props = NotFoundBoundaryProps; } export declare const NotFoundBoundary: React.FC;