export interface NotBetweenDescription { notBetween: { value: T; min: T; max: T; }; } export declare const isNotBetweenDescription: (val: any) => val is NotBetweenDescription;