import type { TextStyle } from "react-native"; import { tokens as staticTokens } from "../utils/design"; import type { AtlantisThemeContextValue } from "../AtlantisThemeContext"; /** * Reusable typography styles to ensure consistency for any client facing texts. */ export declare const getTypographyStyles: (tokens: AtlantisThemeContextValue["tokens"] | typeof staticTokens) => { [index: string]: TextStyle; }; /** * @deprecated Use useTypographyStyles instead */ export declare const typographyStyles: Record; export declare const useTypographyStyles: () => { [index: string]: TextStyle; };