/** * Represents the tiers of filling variation tokens that can be applied to Framework Components */ export declare enum DESIGN_FILL_VARIATION { block = "block", clear = "clear", flush = "flush", outline = "outline" } /** * Represents the tiers of flex variations tokens that can be applied to Framework Components */ export declare enum DESIGN_FLEX_VARIATION { wrap = "wrap" } /** * Represents the tiers of table variations tokens that can be applied to Framework Components */ export declare enum DESIGN_TABLE_VARIATION { borders = "borders", stripes = "stripes" } export declare const DESIGN_FILL_VARIATION_LITERALS: { readonly block: DESIGN_FILL_VARIATION.block; readonly clear: DESIGN_FILL_VARIATION.clear; readonly flush: DESIGN_FILL_VARIATION.flush; readonly outline: DESIGN_FILL_VARIATION.outline; }; export declare const DESIGN_FLEX_VARIATION_LITERALS: { readonly wrap: DESIGN_FLEX_VARIATION.wrap; }; export declare type DESIGN_FILL_VARIATION_ARGUMENT = keyof typeof DESIGN_FILL_VARIATION_LITERALS; export declare type DESIGN_FILL_BUTTON_VARIATION_ARGUMENT = Exclude; export declare type DESIGN_FILL_INPUT_VARIATION_ARGUMENT = Exclude; export declare type DESIGN_FILL_TOGGLE_VARIATION_ARGUMENT = Exclude; export declare const DESIGN_TABLE_VARIATION_LITERALS: { readonly borders: DESIGN_TABLE_VARIATION.borders; readonly stripes: DESIGN_TABLE_VARIATION.stripes; }; export declare type DESIGN_FLEX_VARIATION_ARGUMENT = keyof typeof DESIGN_FLEX_VARIATION_LITERALS | (keyof typeof DESIGN_FLEX_VARIATION_LITERALS)[]; export declare type DESIGN_TABLE_VARIATION_ARGUMENT = keyof typeof DESIGN_TABLE_VARIATION_LITERALS | (keyof typeof DESIGN_TABLE_VARIATION_LITERALS)[];