import { default as React } from '../../node_modules/react'; export interface FontSelectionProps { className?: string; disabled?: boolean; value?: string; onChange?: (v: string) => void; } export declare function FontSelection(props: FontSelectionProps): React.JSX.Element;