import type { $sentArgs } from '../../../table/constants.js'; import type { Table, TableSendableAction } from '../../../table/table.js'; import { $actionName, $spy } from './/constants.js'; import type { TableSpy } from './spy.js'; export declare class TableActionInspector> { [$spy]: TableSpy
; [$actionName]: string; constructor(spy: TableSpy
, Action: new (entity: TABLE) => ACTION); count(): number; args(at: number): ReturnType | undefined; allArgs(): ReturnType[]; }