import type { ActionReceipt } from '../types/action.js'; export type CreateActionReceiptInput = Omit & { /** Optional override; defaults to new Date().toISOString(). */ timestamp?: string; }; export declare function createActionReceipt(input: CreateActionReceiptInput, signerPrivateKey: string): ActionReceipt; //# sourceMappingURL=action.d.ts.map