/**
 * @module constants
 */
/**
 * interface of selectable fonts.
 */
export interface SelectableFonts {
    [x: string]: {
        id: number;
        name: string;
        url: string;
    };
}
/**
 * Selectable fonts (Enterprise only)
 */
export declare const selectableFonts: SelectableFonts;
