import type { Verification } from "./types";
export interface ExpirationDateVerification extends Verification {
    month: string | null;
    year: string | null;
}
export declare function expirationDate(value: string | Record<string, string | number> | unknown, maxElapsedYear?: number): ExpirationDateVerification;
