8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
|
import type React from 'react';
|
||
|
export declare function suspense(): void;
|
||
|
type Child = React.ReactElement<any, any>;
|
||
|
export declare function NoSSR({ children }: {
|
||
|
children: Child;
|
||
|
}): Child;
|
||
|
export {};
|