import { PublicKey } from '@meer-js/crypto'; export interface ActionType { enum: string; } export interface IDelegateAction { senderId: string; receiverId: string; actions: Array; nonce: bigint; maxBlockHeight: bigint; publicKey: PublicKey; } //# sourceMappingURL=types.d.ts.map