type IfProps = { condition: boolean; children: React.ReactNode; }; export declare function If({ condition, children }: IfProps): import("react/jsx-runtime").JSX.Element | null; export {};