UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

21 lines (20 loc) 930 B
import { TdHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; import { DatePickerTableCellPropsContext } from './use-date-picker-table-cell-props-context'; export interface DatePickerTableCellBaseProps extends DatePickerTableCellPropsContext, PolymorphicProps { } export interface DatePickerTableCellProps extends DatePickerTableCellBaseProps, /** * @vue-ignore */ TdHTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<DatePickerTableCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DatePickerTableCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };