import { UnknownProperties } from './core/index'; import { FC, ReactNode } from 'react'; /** @deprecated */ export interface IIfProps extends IfProps, UnknownProperties { } export type IfProps = { condition: boolean; children?: ReactNode; }; declare const If: FC; export default If;