import type { UmbEntityBulkActionArgs } from './types.js'; import type { MetaEntityBulkAction } from '../extension-registry/index.js'; import type { UmbAction } from '../action/index.js'; export interface UmbEntityBulkAction extends UmbAction> { selection: Array; /** * The `execute` method, the action will act as a button. * @returns {Promise} */ execute(): Promise; }