@eslamdevui/ui
Version:
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
17 lines (16 loc) • 880 B
TypeScript
import type { SelectMenuProps, Locale } from '../../types';
export interface LocaleSelectProps extends
/** @vue-ignore */
Pick<SelectMenuProps<any>, 'color' | 'variant' | 'size' | 'trailingIcon' | 'selectedIcon' | 'content' | 'arrow' | 'portal' | 'disabled' | 'ui'> {
locales?: Locale<any>[];
}
declare const _default: import("vue").DefineComponent<LocaleSelectProps & {
modelValue?: string | undefined;
}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: string | undefined) => any;
}, string, import("vue").PublicProps, Readonly<LocaleSelectProps & {
modelValue?: string | undefined;
}> & Readonly<{
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;