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