import m from 'mithril'; import { Editor, EditorAttributes, EditorEventTypes } from '../Editor'; import { IdType } from '../../common/Types'; import './radioGroup.style.css'; declare type RadioItemType = { id: IdType; label?: string; disabled?: boolean; }; declare type RadioGroupAttributes = EditorAttributes & { items: RadioItemType[]; direction?: 'column' | 'row'; }; export declare class RadioGroup extends Editor> { getDirection(): 'column' | 'row'; protected controlView(): m.Children | m.Vnode; protected _getEditorAttrs(attrs: m.Attributes): m.Attributes; } export {}; //# sourceMappingURL=RadioGroup.d.ts.map