UNPKG

roko-date-picker

Version:
17 lines (16 loc) 377 B
import React, { type ReactNode } from "react"; interface ShowComponentProps { children: ReactNode; } interface WhenProps { isTrue: boolean; children: ReactNode; } interface ElseProps { children: ReactNode; } declare const ShowComponent: React.FC<ShowComponentProps> & { When: React.FC<WhenProps>; Else: React.FC<ElseProps>; }; export { ShowComponent };