import { ColDef } from "ag-grid-community"; import { ShiftParameters } from "../../models/ShiftParameters"; type Props = { setShiftSelected: (shiftSelected: ShiftParameters | null) => void; setOpenModalEditShift: Function; setOpenModalDeleteShift: Function; showContextMenu: Function; }; export declare const useTableData: ({ setShiftSelected, setOpenModalEditShift, setOpenModalDeleteShift, showContextMenu, }: Props) => { columnDefs: ColDef[]; }; export {};