import { Option } from '../components/SelectField';
import { FontWithFamily, InternalFont } from '../typeConfigs/shared';
import { FontOption } from '../types';
import { StudioPageSettings } from '../utils/types';
export declare const defaultFontOptions: {
    id: string;
    label: string;
}[];
export declare const generateFontFaceCss: (fonts: InternalFont[]) => string;
export declare const getFontsHTML: (fonts?: StudioPageSettings['fonts']) => string;
export declare const sortFonts: (fonts: InternalFont[]) => InternalFont[];
export declare const sortOptions: (options: Option[]) => Option[];
export declare const isFontOption: (font: FontWithFamily | FontOption) => font is FontOption;
