UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

9 lines (8 loc) 504 B
import type { MonthFormatOptions } from '@zag-js/date-picker'; import type { Merge } from 'type-fest'; import type { HtmlIngredientProps } from '../types.js'; export interface DatePickerMonthSelectProps extends Merge<HtmlIngredientProps<'select', HTMLSelectElement>, MonthFormatOptions> { } declare const DatePickerMonthSelect: import("svelte").Component<DatePickerMonthSelectProps, {}, "ref">; type DatePickerMonthSelect = ReturnType<typeof DatePickerMonthSelect>; export default DatePickerMonthSelect;