import type AtomHtmlEditor from "../AtomHtmlEditor"; export interface ICommand { label?: string; icon?: string; queryState?: string; enabled?: boolean; title?: string; command?: (editor: AtomHtmlEditor) => void; query?: (editor: AtomHtmlEditor) => boolean; } export default function Command({ icon, label, command, queryState, query, ...others }: ICommand): any; //# sourceMappingURL=Command.d.ts.map