export declare const listKind: readonly ["ordered", "unordered", "unstyled", "withIcons"]; export type ListKind = typeof listKind[number]; export declare const listKindToElement: { readonly ordered: "ol"; readonly unordered: "ul"; readonly unstyled: "ul"; readonly withIcons: "ul"; }; export declare const listSizes: readonly ["sm", "md", "lg", "xl"]; export type ListSize = typeof listSizes[number]; export declare const listDensity: readonly ["md", "lg"]; export type ListDensity = typeof listDensity[number]; export declare const orderedListStyles: readonly ["decimal", "lower-alpha", "lower-roman"]; export declare const unorderedListStyles: readonly ["disc", "circle"];