export type AccountAddressRelationshipResponse = { chainId?: number; count?: number; data?: { hash: string; timestamp: string; chainId: number; blockNumber: string; blockHash: string; gas: number; gasUsed: number; gasPrice: string; effectiveGasPrice: number; nonce: number; cumulativeGasUsed: number; methodId: string; value: string; to: string; from: string; }; txHash?: string; }; export type AccountAddressRelationshipResult = AccountAddressRelationshipResponse & { error?: { code: string; message: string; }; }; export type GetAccountAddressRelationshipRequest = { /** Chain ID of account relationship to check. */ chainId: number; /** Recipient of the transaction. */ to: string; /** Sender of the transaction. */ from: string; }; /** * Fetch account address relationship from the accounts API. * * @param request - The request object. * @returns The raw response object from the API. */ export declare function getAccountAddressRelationship(request: GetAccountAddressRelationshipRequest): Promise; //# sourceMappingURL=accounts-api.d.ts.map