import { ReactNode } from 'react'; type Props = { isTrue: boolean; children: ReactNode; }; export declare const If: ({ isTrue, children }: Props) => ReactNode; export {};