UNPKG

346 BTypeScriptView Raw
1import type { FC, ReactElement } from 'react';
2interface Props {
3 active: boolean;
4 forceRender?: boolean;
5 destroyOnClose?: boolean;
6 children: ReactElement;
7}
8export declare const ShouldRender: FC<Props>;
9export declare function useShouldRender(active: boolean, forceRender?: boolean, destroyOnClose?: boolean): boolean;
10export {};