export interface Rule {
    key: string;
    is: 'lt' | 'lte' | 'gt' | 'gte' | 'equals' | 'notEquals';
    value: string | number | boolean | {
        [key: string]: any;
    } | any[];
    [key: string]: any;
}
