import { SyncValidation } from '../../types.js'; /** * Ensure value is a valid boolean or a valid boolean representation * as a number or a string. * * - 0,'0' are casted to false * - 1,'1' are casted to true */ export declare const boolean: SyncValidation;