1 | export const VALID_FONT_SCALES: number[];
|
2 | export function getCurrentFontScale(): number;
|
3 | export enum FontScaleCategory {
|
4 | ExtraSmall = 'extra-small',
|
5 | Medium = 'medium',
|
6 | ExtraLarge = 'extra-large',
|
7 | }
|
8 | export function getFontScaleCategory(): FontScaleCategory;
|
9 | export function initAccessibilityFontScale(): void;
|