import { ReactNode } from 'react'; export type Themes = ThemeConfig; export type Font = { family: string; url: string; }; export type ThemeConfig = { default?: ThemeConfig; name: string; id: string; font: Font; style: Record; }; export type Lang = 'es' | 'pt' | 'en'; export type ITDSProviderProps = { children: ReactNode; project: string; theme: Themes; lang?: Lang; }; //# sourceMappingURL=types.d.ts.map