import { type Components } from '@mui/material'; import { type Theme } from '../types'; export type FontsUrls = { bold: { woff: string; woff2: string; }; light: { woff: string; woff2: string; }; medium: { woff: string; woff2: string; }; regular: { woff: string; woff2: string; }; }; export declare const getComponents: (fontUrls?: FontsUrls) => Components;