import { TableProps } from '@zag-js/date-picker'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface DatePickerTableBaseProps extends Pick, PolymorphicProps { } export interface DatePickerTableProps extends HTMLProps<'table'>, DatePickerTableBaseProps { } export declare const DatePickerTable: ForwardRefExoticComponent>;