import { EditableBeat } from '../beatHelpers'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; /** * `image` and `movie` differ only in what they render, so one editor serves both. * * The url is the only source kind a browser can reach. A local `path` is left editable * because a script may carry one, but it will not resolve here — the beat is authored for a * page, and the page is where it has to be fetchable from. */ 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;