import type { Verification } from "./types";
declare type PostalCodeOptions = {
    minLength?: number;
};
export declare function postalCode(value: string | unknown, options?: PostalCodeOptions): Verification;
export {};
