export declare const DIVIDER_COLORS: readonly ["00", "00-alt", "01", "02", "03"]; export type DividerColor = typeof DIVIDER_COLORS[number]; export declare const BORDER_COLORS_CLASS_NAMES: { readonly '00': "00"; readonly '00_ALT': "00-alt"; readonly '01': "01"; readonly '02': "02"; readonly '03': "03"; readonly STRONG: "strong"; readonly POSITIVE: "positive"; readonly WARNING: "warning"; readonly NEGATIVE: "negative"; readonly INFO_PRIMARY: "info-primary"; readonly INFO_SECONDARY: "info-secondary"; readonly POSITIVE_STRONG: "positive-strong"; readonly WARNING_STRONG: "warning-strong"; readonly NEGATIVE_STRONG: "negative-strong"; readonly INFO_PRIMARY_STRONG: "info-primary-strong"; readonly INFO_SECONDARY_STRONG: "info-secondary-strong"; readonly INVERSE: "inverse"; }; type BorderColorKeys = keyof typeof BORDER_COLORS_CLASS_NAMES; export type DividerBorderColor = typeof BORDER_COLORS_CLASS_NAMES[BorderColorKeys]; export declare const BORDER_WIDTHS: readonly ["md", "lg", "xl"]; export type DividerBorderWidth = (typeof BORDER_WIDTHS)[number]; export declare const BORDER_STYLES: readonly ["solid", "dashed", "dotted"]; export type DividerBorderStyle = (typeof BORDER_STYLES)[number]; export declare const ALIGN_CONTENT: readonly ["start", "end", "center"]; export type DividerAlignContent = (typeof ALIGN_CONTENT)[number]; export declare const ORIENTATIONS: readonly ["horizontal", "vertical"]; export type DividerOrientation = (typeof ORIENTATIONS)[number]; export {};