/// import { Table } from '@c-fo/vibes'; import { IndexPageListContent } from '../../../../areas/IndexList'; import { IndexPageRenderCustomModalType } from '../../../../templates/IndexPage/types/customModal'; import type { BaseResource } from '../../../../pages/types'; import type { ApiSearchParams } from '../../../../templates/IndexPage/types'; type Row = React.ComponentPropsWithoutRef['rows'][number]; type Cell = Row['cells'][number]; export declare const generateTableCell:

({ item, columnName, historyPushState, resource, refetchResources, showCustomModal, searchQuery, setDestroyTargetId, }: { item: IndexPageListContent; columnName: string; historyPushState?: ((url: string) => void) | undefined; resource: R; refetchResources: () => Promise; showCustomModal: (modal: IndexPageRenderCustomModalType) => void; searchQuery: P; setDestroyTargetId?: ((id: string | number) => void) | undefined; }) => Cell; export {};