declare type DateFormatPart = {
    type: "quoted" | "literal" | "pattern";
    text: string;
};
export declare class DateFormat {
    static get(format: string, locale?: string): DateFormat;
    parts: Array<DateFormatPart>;
    constructor(parts: Array<DateFormatPart>);
    toString(): string;
}
export {};
//# sourceMappingURL=DateFormat.d.ts.map