import { NotEqualDescription } from './comparison/not-equal/not-equal-description'; import { GreaterThanDescription } from './comparison/greater-than/greater-than-description'; import { LikeDescription } from './comparison/like/like-description'; import { EqualDescription } from './comparison/equal/equal-description'; import { OrDescription } from '../keyword/or/or-description'; import { AndDescription } from '../keyword/and/and-description'; import { BetweenDescription } from './comparison/between/between-description'; import { ExistsDescription } from '../dml/select/subquery/exists-description'; import { NotBetweenDescription } from './comparison/not-between/not-between-description'; import { NotInDescription } from './comparison/not-in/not-in-description'; import { InDescription } from './comparison/in/in-description'; import { IsNullDescription } from './comparison/is-null/is-null-description'; import { GreaterEqualThanDescription } from './comparison/greater-equal-than/greater-equal-than-description'; import { LowerThanDescription } from './comparison/lower-than/lower-than-description'; import { LowerEqualThanDescription } from './comparison/lower-equal-than/lower-equal-than-description'; export declare type ConditionDescription = EqualDescription | ExistsDescription | BetweenDescription | InDescription | NotInDescription | NotBetweenDescription | NotEqualDescription | LikeDescription | IsNullDescription | GreaterThanDescription | GreaterEqualThanDescription | LowerThanDescription | LowerEqualThanDescription | AndDescription | OrDescription;