import { EditableBeat } from '../beatHelpers'; import { BeatEditorDefinition } from '../editors/types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; /** * The editing pane for one beat: the fields every beat has, plus whichever registered editor * handles its image type. * * Splitting it this way is what keeps each editor small — none of them repeats the `text` * field — and it is what lets a beat type have more than one editor, since only the * image-specific half varies. */ type __VLS_Props = { beat: EditableBeat; editors?: BeatEditorDefinition[]; }; declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { update: (beat: EditableBeat) => any; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ onUpdate?: ((beat: EditableBeat) => any) | undefined; }>, { editors: BeatEditorDefinition[]; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;