/**
 * Excel has the following items as a list.
 *
 * https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.spreadsheet.numberingformats?view=openxml-2.8.1
 */
export declare enum NumberFormatType {
    General = "General",
    Number = "Number",
    Currency = "Currency",
    Accounting = "Accounting",
    ShortDate = "Short Date",
    LongDate = "Long Date",
    MediumDate = "Medium Date",
    ShortTime = "Short Time",
    MediumTime = "Medium Time",
    LongTime = "Long Time",
    Comma = "Comma",
    Percentage = "Percentage",
    Fraction = "Fraction",
    Scientific = "Scientific",
    Text = "Text",
    Special = "Special",
    Custom = "Custom"
}
//# sourceMappingURL=NumberFormatType.d.ts.map