export type STabSize = 'md' | 'lg'; export interface STabOption { label: string; value: string; badge?: string | number; } /** main(분절형) 사이즈별 레이아웃 — size는 높이·패딩만 바꾸고 폰트는 고정 */ export declare const TAB_MAIN_SIZE: Record; /** 탭 타이포 (main/sub 공통, token: typography.navigation.sm) */ export declare const TAB_TYPOGRAPHY: { fontSize: number; lineHeight: number; }; export declare const TAB_MAIN_COLORS: { selected: { bg: string; border: string; text: string; }; default: { bg: string; border: string; text: string; }; }; export declare const TAB_SUB_COLORS: { selected: { text: string; line: string; }; default: { text: string; }; };