import { ToolbarProperties } from "./ToolbarProperties";
import { EditorCommand } from "./EditorCommand";
import { EditorMenuBar } from "./EditorMenuBar";
export interface AnimatedGifCommand extends EditorCommand {
    animatedGif?: (option: {
        gifUrl: string;
    }) => void;
}
export interface AnimatedGifMenuBar extends EditorMenuBar<AnimatedGifCommand> {
}
export interface AnimatedGifToolbarProperties extends ToolbarProperties<AnimatedGifCommand> {
}
