/** * Represents the preset border radius tokens that can be applied to Framework Components */ export declare enum DESIGN_SHAPE { pill = "pill", rounded = "rounded" } export declare const DESIGN_SHAPE_LITERALS: { readonly pill: DESIGN_SHAPE.pill; readonly rounded: DESIGN_SHAPE.rounded; }; export declare type DESIGN_SHAPE_ARGUMENT = keyof typeof DESIGN_SHAPE_LITERALS;