/// interface IConditionalProps { children: any; show?: boolean; } export declare const Conditional: ({ children, show }: IConditionalProps) => JSX.Element | null; export default Conditional;