import type { Checker } from 'estree-toolkit/dist/generated/is-type'; import type { Node } from 'estree-toolkit/dist/helpers'; /** A validator that returns `true` if the node is `null`. */ type NullableChecker = (node: Node | null | undefined) => node is T | null; /** Extends a validator to return `true` if the node is `null`. */ export declare function isNullableOf(validator: Checker): NullableChecker; export declare namespace isNullableOf { var __debugName: string; } export {}; //# sourceMappingURL=validators.d.ts.map