import { ResolvedConfig } from './types'; export declare function getExpectedSignerAddress(payload: Record): string | undefined; export declare function signTransactionsLocally(transactions: any[], privateKey: string, expectedSigner?: string): Promise<{ signerAddress: string; signedTransactions: string[]; }>; export declare function executePreparedResponse(config: ResolvedConfig, preparedBody: Record, preparedResponse: any): Promise;