import { PropType } from 'vue'; import { ChangeEvent } from './types'; export declare const props: { provideKey: { type: (SymbolConstructor | StringConstructor)[]; default: import("vue").InjectionKey; }; modelValue: { type: PropType; required: boolean; }; nullable: { type: BooleanConstructor; default: boolean; }; }; export declare const emits: { 'update:modelValue': any; change: (e: ChangeEvent) => ChangeEvent; };