UNPKG

197 BTypeScriptView Raw
1import { ReactNode } from 'react';
2interface Props {
3 hidden: boolean;
4 children: ReactNode;
5}
6export declare const ToggleVisibility: ({ hidden, children }: Props) => JSX.Element;
7export {};