import { Expiration, SupportedLanguage } from './types';
type ExpireFormat = (n: number) => string;
export type ExpireLocale = {
    session: string;
    year: ExpireFormat;
    month: ExpireFormat;
    day: ExpireFormat;
    hour: ExpireFormat;
};
export declare const expireToString: (expire: Expiration, language: SupportedLanguage) => string;
export {};
