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'; export declare const TableContent:
({ setDestroyTargetId, showCustomModal, scope, checkedIndexes, updateCheckedIndexes, listContents, }: { setDestroyTargetId: (id: string | number) => void; showCustomModal: (modal: IndexPageRenderCustomModalType) => void; scope: 'default' | 'bulk'; checkedIndexes: number[]; updateCheckedIndexes: (indexes: number[]) => void; listContents: { header: IndexPageListContent
[]; rows: { resource: R; columns: IndexPageListContent
[]; checkBoxDisabled: boolean; }[]; }; }) => JSX.Element;