import * as React from 'react';
import { FormComponentProps, BoundProp } from '@tomino/dynamic-form';
export declare type IfProps = {
    exists: boolean;
    notExists: boolean;
    biggerThan: number;
    biggerOrEqualThan: number;
    smallerThan: number;
    smallerOrEqualThan: number;
    equal: string;
    notEqual: string;
    expression: string;
    value: BoundProp;
};
export declare const IfView: React.FC<FormComponentProps<IfProps>>;
