import type { TranslatorPlugin } from "./types";
export declare type Formats = {
    [type: string]: Intl.DateTimeFormatOptions;
};
export declare const defaultFormats: Formats;
export declare function createDateTimePlugin(locale?: Intl.Locale | string, defaultTimezone?: string, defaultFormat?: string, formats?: Formats): TranslatorPlugin;
