import "./pretendard.css"; type FontSet = { fontFamily: string; letterSpacing: string; fontFeatureSettings: string; }; declare class Font { static readonly fontFamily = "Pretendard, sans-serif"; static readonly letterSpacing = "0rem"; /** 일괄적으로 변경하려면 수정 */ static readonly fontFeatureSettings = "'clig' off, 'liga' off"; static readonly defaultFontSet: FontSet; static getFontSize: (size: "small" | "medium" | "large" | undefined) => "0.75rem" | "1rem" | "1.375rem"; } export default Font; //# sourceMappingURL=index.d.ts.map