UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 405 B
import type { HtmlIngredientProps } from '../types.js'; export interface DatePickerMonthSelectProps extends HtmlIngredientProps<'select', HTMLSelectElement> { format?: 'short' | 'long'; } declare const DatePickerMonthSelect: import("svelte").Component<DatePickerMonthSelectProps, {}, "ref">; type DatePickerMonthSelect = ReturnType<typeof DatePickerMonthSelect>; export default DatePickerMonthSelect;