bpms_site/.svn/pristine/e7/e75eef4f3b9b25ca366bd9e57aa027ac11fb416f.svn-base
2025-11-02 16:38:49 +03:30

10 lines
338 B
Plaintext

import React from 'react';
interface NotFoundBoundaryProps {
notFound?: React.ReactNode;
notFoundStyles?: React.ReactNode;
asNotFound?: boolean;
children: React.ReactNode;
}
export declare function NotFoundBoundary({ notFound, notFoundStyles, asNotFound, children, }: NotFoundBoundaryProps): React.JSX.Element;
export {};