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