import { Table } from '@c-fo/vibes'; import { IndexPageListContent } from '../../../../areas/IndexList'; import type { BaseResource } from '../../../../pages/types'; import type { ApiSearchParams } from '../../../../templates/IndexPage/types'; import type { ComponentPropsWithoutRef } from 'react'; type Column = ComponentPropsWithoutRef['columns'][number]; export declare const generateTableColumn:

({ item, historyPushState, sortable, }: { item: IndexPageListContent; historyPushState?: ((url: string) => void) | undefined; sortable: boolean; }) => Column; export {};