export declare const BORDER_WIDTH_CLASS_NAMES: { readonly NONE: "none"; readonly MD: "md"; readonly LG: "lg"; readonly XL: "xl"; readonly DIVIDER: "divider"; }; type BorderWidthKeys = keyof typeof BORDER_WIDTH_CLASS_NAMES; export type BoxBorderWidth = typeof BORDER_WIDTH_CLASS_NAMES[BorderWidthKeys]; export declare const BACKGROUND_COLORS_CLASS_NAMES: { readonly '00': "00"; readonly '00_ALT': "00-alt"; readonly '01': "01"; readonly '02': "02"; readonly '03': "03"; 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 SELECTED: "selected"; readonly SELECTED_SUBTLE: "selected-subtle"; readonly HIGHLIGHT: "highlight"; readonly TRANSPARENT: "transparent"; readonly INVERSE: "inverse"; readonly EXPRESSIVE: "expressive"; readonly EXPRESSIVE_STRONG: "expressive-stronger"; readonly EXPRESSIVE_INVERSE: "expressive-inverse"; }; type BackgroundColorKeys = keyof typeof BACKGROUND_COLORS_CLASS_NAMES; export type BoxBackgroundColor = typeof BACKGROUND_COLORS_CLASS_NAMES[BackgroundColorKeys]; 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 SELECTED: "selected"; readonly FOCUS: "focus"; readonly INVERSE: "inverse"; readonly EXPRESSIVE: "expressive"; readonly EXPRESSIVE_STRONGER: "expressive-stronger"; readonly TRANSPARENT: "transparent"; }; type BorderColorKeys = keyof typeof BORDER_COLORS_CLASS_NAMES; export type BoxBorderColor = typeof BORDER_COLORS_CLASS_NAMES[BorderColorKeys]; export declare const BORDER_RADIUS_CLASS_NAMES: { readonly NONE: "none"; readonly XS: "xs"; readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; readonly ROUND: "round"; }; type BorderRadiusKeys = keyof typeof BORDER_RADIUS_CLASS_NAMES; export type BoxBorderRadius = typeof BORDER_RADIUS_CLASS_NAMES[BorderRadiusKeys]; export declare const SHADOWS_CLASS_NAMES: { readonly NONE: "none"; readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; readonly OVERLAY: "overlay"; }; type ShadowKeys = keyof typeof SHADOWS_CLASS_NAMES; export type BoxShadow = typeof SHADOWS_CLASS_NAMES[ShadowKeys]; export {};