import { ReactNode } from 'react';
export type TIfProps = {
    when: unknown;
    elseComponent?: ReactNode;
    children: ReactNode;
};
//# sourceMappingURL=types.d.ts.map