import * as React from 'react';

interface FontPickerProps {
    value?: string;
    onChange(v: string): void;
    fonts: Array<{
        id: string;
        label: string;
        stack: string;
    }>;
    'aria-label'?: string;
}
declare function FontPicker({ value, onChange, fonts, 'aria-label': ariaLabel }: FontPickerProps): React.JSX.Element;

export { FontPicker, type FontPickerProps };
