import { ObjectShape } from 'yup/lib/object'; import { TReferenceProps } from '../../..'; import { IObjectProps, TObjectValidatorResult } from '../_types'; export interface IIsNullableProps { } /** * Allow an `object` to be `null`. */ export declare const isNullable: (props?: TReferenceProps & Omit) => TObjectValidatorResult;