export interface TypographyToken { fontFamily: string; fontSize: string; lineHeight: string; letterSpacing: string; fontWeight?: number; [key: string]: string | number | undefined; } export interface TypographySet { [key: string]: TypographyToken; } export interface BreakpointsConfig { tablet?: string; desktop?: string; [key: string]: string | undefined; } export interface TypographyPluginOptions { casing?: 'snakeCase' | 'camelCase' | 'pascalCase' | 'kebabCase' | 'noCase'; breakpoints?: BreakpointsConfig; prefix?: string; brands?: string[]; } declare const _default: { (options: TypographyPluginOptions | undefined): { handler: import("tailwindcss/types/config").PluginCreator; config?: Partial; }; __isOptionsFunction: true; }; export default _default; //# sourceMappingURL=typography-gsf.d.ts.map