/// import { Children } from '../../utils'; export declare const Then: ({ children }: { children?: Children; }) => JSX.Element; export declare const Else: ({ children }: { children?: Children; }) => JSX.Element; export declare function If({ condition, children, }: { condition: boolean | (() => boolean); children?: Children; }): JSX.Element | null; export declare function ElseIf({ condition, children, }: { condition: boolean | (() => boolean); children?: Children; }): JSX.Element; export declare function ThenIf({ condition, children, }: { condition: boolean | (() => boolean); children?: Children; }): JSX.Element; declare const _default: { If: typeof If; Then: ({ children }: { children?: Children; }) => JSX.Element; Else: ({ children }: { children?: Children; }) => JSX.Element; ElseIf: typeof ElseIf; }; export default _default;