import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ListNumberingType` - Defines the numbering type for ordered lists. * * @public */ export declare const ListNumberingType: { /** * `1` - Decimal numbers (default). * @default */ readonly Decimal: "1"; /** * `a` - Lowercase ASCII letters. */ readonly LowerAlpha: "a"; /** * `A` - Uppercase ASCII letters. */ readonly UpperAlpha: "A"; /** * `i` - Lowercase Roman numerals. */ readonly LowerRoman: "i"; /** * `I` - Uppercase Roman numerals. */ readonly UpperRoman: "I"; }; /** * @public */ export type ListNumberingType = ValuesOf; //# sourceMappingURL=ListNumberingType.d.ts.map