import { Comparable } from './comparable'; type Value = T | Condition | Value[]; export declare class Condition { readonly value: Value; readonly format: (prop: string) => string; constructor(value: Value, format: (prop: string) => string); } export {};