import { ToolbarProperties } from "./ToolbarProperties";
import { EditorCommand } from "./EditorCommand";
import { EditorMenuBar } from "./EditorMenuBar";
export interface TextColorCommand extends EditorCommand {
    textcolor?: (option: {
        color: string;
        force?: boolean;
    }) => void;
}
export interface TextColorMenuBar extends EditorMenuBar<TextColorCommand> {
}
export interface TextColorToolbarProperties extends ToolbarProperties<TextColorCommand> {
}
