mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 04:17:58 +00:00
9 lines
344 B
TypeScript
9 lines
344 B
TypeScript
import type { RouteProps } from '@pezkuwi/apps-routing/types';
|
|
import React from 'react';
|
|
interface Props extends RouteProps {
|
|
missingApis?: (string | string[])[];
|
|
}
|
|
declare function NotFound({ basePath, missingApis }: Props): React.ReactElement;
|
|
declare const _default: React.MemoExoticComponent<typeof NotFound>;
|
|
export default _default;
|