import { ValidationFailure } from '../error'; import { Validator } from '../interface'; export declare class NullableValidator implements Validator { readonly value: Validator; constructor(value: Validator); cast(value: unknown): ValidationFailure | T | null; validate(value: unknown): ValidationFailure | undefined; phantom(): S | null; } //# sourceMappingURL=nullable.d.ts.map