import { FunctionComponent, ReactNode } from 'react';
export interface IfProps {
    condition: any | undefined;
    children?: ReactNode;
}
export declare const If: FunctionComponent<IfProps>;
