import { default as React } from 'react'; import { TextFontFamily } from '../types'; interface TextToolProps { color: string; onColorChange: (c: string) => void; size: number; onSizeChange: (s: number) => void; family: TextFontFamily; onFamilyChange: (f: TextFontFamily) => void; } export declare const TextTool: React.FC; export {};