@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
14 lines (13 loc) • 726 B
TypeScript
import { SegmentProps } from '@zag-js/date-input';
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory.js';
export interface DateInputSegmentBaseProps extends PolymorphicProps, Pick<SegmentProps, 'segment'> {
}
export interface DateInputSegmentProps extends DateInputSegmentBaseProps,
/**
* @vue-ignore
*/
HTMLAttributes {
}
declare const _default: DefineComponent<DateInputSegmentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DateInputSegmentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;