import React from "react"; interface ScopeInterface { [key: string]: string; } export interface TextToolbarProps { bodyText?: { label: string; options: string[]; }; textStyle?: { menuTitle: string; scopes: ScopeInterface[]; options: { scope: keyof ScopeInterface; fontFamily: string; }[]; }; textColor?: { menuTitle: string; color: string; onChange: (color: string) => void; }; textBoxColor?: { menuTitle: string; color: string; onChange: (color: string) => void; }; textBoxStyle?: { menuTitle: string; }; withDrawOption?: { onClick: () => void; }; } export declare const TextToolbar: React.FC; export {};