import * as Solid from 'solid-js';
import type { NotFoundError } from '@tanstack/router-core';
export declare function getNotFound(error: unknown): (NotFoundError & {
    isNotFound: true;
}) | undefined;
export declare function CatchNotFound(props: {
    fallback?: (error: NotFoundError) => Solid.JSX.Element;
    onCatch?: (error: NotFoundError) => void;
    children: Solid.JSX.Element;
}): Solid.JSX.Element;
export declare function DefaultGlobalNotFound(): Solid.JSX.Element;
