import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; interface FlatModelOption { provider: string; modelId: string; baseUrl: string; apiKey: string; isLocal?: boolean; } type __VLS_Props = { modelOptions: FlatModelOption[]; currentValue: string; }; declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { change: (value: string) => any; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ onChange?: ((value: string) => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, { rootRef: HTMLDivElement; }, HTMLDivElement>; export default _default;