import { default as _Button } from './button.vue'; export interface ButtonProps { type?: string; } export type ButtonEmits = { 'update:modelValue': [value: string]; }; export type ButtonInstance = InstanceType;