import { ModelRef } from 'vue'; /** * emits */ export interface Emits { (event: 'change', value: string | number): void; } /** * props */ export interface Props { } /** * useInitSlots */ export declare namespace USEInitSlots { interface Option { emit: Emits; currentValue: ModelRef; } }