/** * Bindable Mixin for use in .vue files. */ declare const Bindable: { methods: { get(this: any, vmProp: string): any; set(this: any, vmProp: string, value: any): void; watch(this: any, vmProp: string, callback: (...args: any[]) => void): { remove(): void; }; }; }; export { Bindable as default };