@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
24 lines (23 loc) • 934 B
TypeScript
import { TimePeriod } from '@zag-js/time-picker';
import { ButtonHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
interface CombinedCellProps {
value: number | TimePeriod;
}
export interface TimePickerCellBaseProps extends CombinedCellProps, PolymorphicProps {
}
export interface TimePickerCellProps extends TimePickerCellBaseProps,
/**
* @vue-ignore
*/
Omit<ButtonHTMLAttributes, 'value'> {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<TimePickerCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TimePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};