/// import { CollectionState, FiltersMap } from '@wix/bex-core'; import { TableColumn as TableColumnWSR } from '@wix/design-system/dist/types/Table'; import { ActionsCell } from './ActionsCell'; export interface UseActionsCellColumnParams { actionsCellWidth?: string | number; actionsCellProps?: Partial, 'render' | 'style'>>; sticky?: boolean; actionsCell?: ActionsCell; collection: CollectionState; } export declare function useActionsCellColumn(params: UseActionsCellColumnParams): { render: (keyedItem: import("@wix/bex-core").KeyedItem, index: number) => JSX.Element; title: {} | null; dataHook?: string | undefined; key: import("react").Key; align?: import("@wix/design-system/dist/types/Table/DataTable").DataTableColumnAlign | undefined; width: string | number; sortDescending?: boolean | undefined; sortable?: boolean | undefined; infoTooltipProps?: import("@wix/design-system/dist/types/Table/DataTable").PopoverPropsWithContent | undefined; important?: boolean | undefined; stickyActionCell?: boolean | undefined; id: string; style: { justifyContent: string; }; } | null; //# sourceMappingURL=useActionsCellColumn.d.ts.map