@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
17 lines (16 loc) • 837 B
text/typescript
import type { SelectMenuProps } from '../SelectMenu.vue';
import type { Locale } from '../../types/locale';
export interface LocaleSelectProps extends Omit<SelectMenuProps<Locale<any>[], 'code', false>, 'items' | 'modelValue'> {
locales?: Locale<any>[];
}
declare const __VLS_export: import("vue").DefineComponent<LocaleSelectProps & {
modelValue: string;
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: string) => any;
}, string, import("vue").PublicProps, Readonly<LocaleSelectProps & {
modelValue: string;
}> & Readonly<{
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;