export interface FieldConditionProps {
    when: boolean;
    children: any;
}
export declare const FieldCondition: ({ when, children }: FieldConditionProps) => any;
