/** * Represents placement tokens to show content at specific relative locations that can be applied to Framework Components */ export declare enum DESIGN_PLACEMENT { top = "top", left = "left", bottom = "bottom", right = "right" } /** * Represents placement tokens to show content at specific x-axis relative locations that can be applied to Framework Components */ export declare enum DESIGN_PLACEMENT_X { left = "left", right = "right" } /** * Represents placement tokens to show content at specific y-axis relative locations that can be applied to Framework Components */ export declare enum DESIGN_PLACEMENT_Y { top = "top", bottom = "bottom" } /** * Represents placement tokens to show content at specific relative locations that can be applied to Framework Components */ export declare enum DESIGN_PLACEMENT_ALIGNMENT { start = "start", center = "center", end = "end" } export declare const DESIGN_PLACEMENT_LITERALS: { readonly top: DESIGN_PLACEMENT.top; readonly left: DESIGN_PLACEMENT.left; readonly bottom: DESIGN_PLACEMENT.bottom; readonly right: DESIGN_PLACEMENT.right; }; export declare const DESIGN_PLACEMENT_X_LITERALS: { readonly left: DESIGN_PLACEMENT_X.left; readonly right: DESIGN_PLACEMENT_X.right; }; export declare const DESIGN_PLACEMENT_Y_LITERALS: { readonly top: DESIGN_PLACEMENT_Y.top; readonly bottom: DESIGN_PLACEMENT_Y.bottom; }; export declare type DESIGN_PLACEMENT_ARGUMENT = keyof typeof DESIGN_PLACEMENT_LITERALS; export declare type DESIGN_PLACEMENT_X_ARGUMENT = keyof typeof DESIGN_PLACEMENT_X_LITERALS; export declare type DESIGN_PLACEMENT_Y_ARGUMENT = keyof typeof DESIGN_PLACEMENT_Y_LITERALS; export declare type DESIGN_PLACEMENT_ALIGNMENT_ARGUMENT = keyof typeof DESIGN_PLACEMENT_LITERALS;