import { SanitationOptions } from '../../interfaces'; /** * Convert the input to a boolean. * Everything except for '0', 'false' and '' returns true. In strict mode only '1' and 'true' return true. */ export declare function ToBoolean(isStrict?: boolean, annotationOptions?: SanitationOptions): PropertyDecorator;