/**
 * Automatically generated by {@link Script} on Mon, 04 Aug 2025 12:40:40 GMT
 *
 * @see {@link https://github.com/jslno/node-zugferd/blob/main/packages/node-zugferd/scripts/codelists/date/output.xml|Source}
 */
type DateDefinition = {
    key: string;
    name: string;
    value: string;
    description: string;
};
type DateCode = (typeof DATE)[number]["value"];
/**
 * Automatically generated by {@link Script} on Mon, 04 Aug 2025 12:40:40 GMT
 *
 * @see {@link https://github.com/jslno/node-zugferd/blob/main/packages/node-zugferd/scripts/codelists/date/output.xml|Source}
 */
declare const DATE: [{
    readonly key: "CCYYMMDD";
    readonly name: "CCYYMMDD";
    readonly value: "102";
    readonly description: "Calendar date: C = Century ; Y = Year ; M = Month ; D = Day.";
}, {
    readonly key: "CCYYMMDDHHMMZHHMM";
    readonly name: "CCYYMMDDHHMMZHHMM";
    readonly value: "205";
    readonly description: "Calendar date including time and time zone expressed in hours and minutes.\nZHHMM = time zone given as offset from Coordinated Universal Time (UTC).";
}];
declare const dateCode: ("102" | "205")[];
declare const Date: {
    CCYYMMDD: "102";
    CCYYMMDDHHMMZHHMM: "205";
};

export { DATE, Date, type DateCode, type DateDefinition, dateCode };
