import { default as React } from 'react';
import { SelectProps } from 'antd';
export interface FontPickerProps extends Omit<SelectProps, 'options' | 'defaultValue'> {
    fonts?: string[];
    defaultValue?: string[];
}
/**
 * FontPicker to select font types / families
 */
export declare const FontPicker: React.FC<FontPickerProps>;
