/** * Represents the tiers of content positioning tokens that can be applied to Framework Components */ export declare enum DESIGN_POSITION { floated = "floated", raised = "raised" } export declare const DESIGN_POSITION_LITERALS: { readonly floated: DESIGN_POSITION.floated; readonly raised: DESIGN_POSITION.raised; }; export declare type DESIGN_POSITION_ARGUMENT = keyof typeof DESIGN_POSITION_LITERALS;