import React from 'react'; import { CollectionOptimisticActions, DeleteManyParams, FiltersMap } from '@wix/bex-core'; import { ActionCellAPI } from '../../state'; export interface DeleteSecondaryActionProps extends DeleteManyParams { /** * Actions for performing optimistic updates on the collection. * These updates are applied immediately for better user experience * while waiting for the server response. * @external */ optimisticActions: CollectionOptimisticActions; /** * API for interacting with the action cell. * This API provides methods for manipulating and accessing the action cell's state. * @external */ actionCellAPI: ActionCellAPI; } export declare function deleteSecondaryAction(props: DeleteSecondaryActionProps): { dataHook: string; text: string; icon: React.JSX.Element; onClick: () => void; }; //# sourceMappingURL=deleteSecondaryAction.d.ts.map