import { TableProps } from '../../shared/types/table'; import { GhanttColumnDef } from '../../shared/ghantt'; /** * Tabla estándar {@link Table} con **una columna extra** de tipo Gantt (`type: 'gantt'`). * La configuración voluminosa vive en el objeto **`gantt`** (presentación, datos, timeline, aspecto, eventos). * * @example * ```tsx * , * width: 520, * placement: 'end', * }, * data: { accessor: 'timeline' }, * timeline: { viewStart: '2026-04-01', viewEnd: '2026-05-01', scale: 'day' }, * events: { onBarClick: ({ bar }) => console.log(bar.id) }, * }} * /> * ``` */ export declare function Ghantt({ columns, gantt, ...tableProps }: Omit, 'columns'> & { columns: TableProps['columns']; gantt: GhanttColumnDef; }): import("react/jsx-runtime").JSX.Element; export declare namespace Ghantt { var displayName: string; } //# sourceMappingURL=Ghantt.d.ts.map