import { TReferenceProps } from '../../..'; import { IBooleanProps, TBooleanValidatorResult } from '../_types'; export interface IIsOptionalProps { } /** * Allow a `boolean` to be `undefined`. */ export declare const isOptional: (props?: TReferenceProps & Omit) => TBooleanValidatorResult;