interface TableLinkProps { item: number; type: 'day' | 'month' | 'year'; title?: string; longTitle?: string; active: boolean; disabled: boolean; today: boolean; autofocus?: boolean; onClick: (item: number) => void; } declare const TableLink: ({ item, type, title, longTitle, active, disabled, today, autofocus, onClick, }: TableLinkProps) => import("react").JSX.Element; export default TableLink; //# sourceMappingURL=TableLink.d.ts.map