next
Version:
The React Framework
8 lines (7 loc) • 299 B
TypeScript
export type ErrorType = 'runtime' | 'build';
export type PagesDevOverlayType = typeof PagesDevOverlay;
interface PagesDevOverlayProps {
children?: React.ReactNode;
}
export declare function PagesDevOverlay({ children }: PagesDevOverlayProps): import("react/jsx-runtime").JSX.Element;
export {};