import type { TableCellProps, TableCellState } from '@zag-js/date-picker';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface DatePickerMonthTableCellProps extends Merge<HtmlIngredientProps<'td', HTMLTableCellElement, TableCellState>, TableCellProps> {
}
declare const DatePickerMonthTableCell: import("svelte").Component<DatePickerMonthTableCellProps, {}, "ref">;
type DatePickerMonthTableCell = ReturnType<typeof DatePickerMonthTableCell>;
export default DatePickerMonthTableCell;
