@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
13 lines (12 loc) • 663 B
TypeScript
import { SelectHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface SelectHiddenSelectBaseProps extends PolymorphicProps {
}
export interface SelectHiddenSelectProps extends SelectHiddenSelectBaseProps,
/**
* @vue-ignore
*/
SelectHTMLAttributes {
}
declare const _default: DefineComponent<SelectHiddenSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectHiddenSelectProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;