import { EditableBeat } from '../beatHelpers'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; /** * `markdown` is a union: a string (or array of lines), or a layout of named slots. Both are * edited here, because they are one field and a beat is in one of the two forms at a time. * * Converting string -> layout is always safe, so it is a button. The other direction is * offered only when the layout is a bare `content`, which is the one case where nothing is * lost; otherwise the author would silently lose a slot's writing. */ type __VLS_Props = { beat: EditableBeat; }; declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { update: (beat: EditableBeat) => any; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ onUpdate?: ((beat: EditableBeat) => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;