import m from 'mithril'; import { Color, IdType } from '../../common/Types'; import { Editor, EditorAttributes, EditorEventTypes } from '../Editor'; import './toggle.style.css'; declare type ToggleAttributes = EditorAttributes & { items: { id: IdType; text?: string; color?: Color; icon?: string; }[]; }; export declare class Toggle extends Editor> { protected controlView(): m.Children | m.Vnode; } export {}; //# sourceMappingURL=Toggle.d.ts.map