import type { ITableStore } from '../types'; export interface ItemActionsProps { children: JSX.Element; store: ITableStore; } declare function ItemActionsWrapper(props: ItemActionsProps): JSX.Element; declare const _default: typeof ItemActionsWrapper; export default _default;