@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
29 lines (28 loc) • 1.02 kB
TypeScript
import { SelectHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface FieldSelectBaseProps extends PolymorphicProps {
}
export interface FieldSelectProps extends FieldSelectBaseProps,
/**
* @vue-ignore
*/
Omit<SelectHTMLAttributes, 'value'> {
modelValue?: SelectHTMLAttributes['value'];
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<FieldSelectProps & {
modelValue?: string;
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
"update:modelValue": (...args: any[]) => void;
}, string, PublicProps, Readonly<FieldSelectProps & {
modelValue?: string;
}> & Readonly<{
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};