import type { TableProps } from '@zag-js/date-picker';
import type { Assign, HtmlIngredientProps } from '../types.js';
export interface DatePickerTableProps extends Assign<HtmlIngredientProps<'table', HTMLTableElement>, Omit<TableProps, 'view'>> {
}
declare const DatePickerTable: import("svelte").Component<DatePickerTableProps, {}, "ref">;
type DatePickerTable = ReturnType<typeof DatePickerTable>;
export default DatePickerTable;
