/** * @deprecated * @description BorderRadiusSize를 사용해주세요. */ export type CornerRadiusSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'full'; export type BorderRadiusSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'full'; export type ShadowScale = 'low' | 'medium' | 'high'; interface Shapes { border_radius: Record; shadow: Record; } /** * @deprecated * @description border_radius_styles_with_size 혹은 shapes.border_radius를 사용해주세요. */ export declare const corner_radius_styles_with_size: Record; export declare const border_radius_styles_with_size: Record; export declare const shadow_styles_with_scale: Record; export declare const shapes: Shapes; export {};