import { ConditionDescription } from '../../operands/condition-description'; export interface OrDescription { or: ConditionDescription[]; } export declare const isOrDescription: (val: any) => val is OrDescription;