import { StoryContext } from '@storybook/vue3'; /** * Composable for use in storybook to create a v-model binding that properly reports changes to the Actions tab * and also updates the model in the Controls tab */ export declare const useStorybookVmodel: (params: { args: Record; prop: string; ctx: StoryContext; /** * Prevents the model from being updated */ blockChanges?: boolean; }) => { model: import('vue').WritableComputedRef; };