import type { CustodyReceipt } from '../types/custody.js'; export type CreateCustodyReceiptInput = Omit & { /** Optional override; defaults to new Date().toISOString(). */ timestamp?: string; }; export declare function createCustodyReceipt(input: CreateCustodyReceiptInput, custodianPrivateKey: string): CustodyReceipt; //# sourceMappingURL=custody.d.ts.map