export declare const TAG_SHAPES: readonly ["square", "pill"]; export declare const TAG_SIZES: readonly ["xs", "sm", "md"]; export declare const TAG_COLORS: readonly ["grey", "red", "orange", "yellow", "green", "blue", "darkblue", "indigo"]; export type STagShape = (typeof TAG_SHAPES)[number]; export type STagSize = (typeof TAG_SIZES)[number]; export type STagColor = (typeof TAG_COLORS)[number]; /** 사이즈별 레이아웃/타이포 (token.json component.tag 기준) */ export declare const TAG_SIZE_CONFIG: Record;