import { ThemeValues } from '.';
export type ThemeFontFaces = {
    'welcome-font': FontFace[];
    'welcome-icon-font': FontFace[];
    'work-sans': FontFace[];
};
type FontFace = {
    display?: FontDisplay;
    extensions?: string[];
    isVariable?: boolean;
    stretch?: string;
    style?: string;
    uniCodeRange?: string;
    url: string;
    weight?: string;
};
export declare const fontFaces: (theme: ThemeValues) => ThemeFontFaces;
export {};
