export type IParsedRawTxInput = { prev_hash: string; prev_index: number; }; export type IParsedRawTxBodyStakeInfo = { hasCertificates: boolean; hasWithdrawals: boolean; requiredSignerHashes: string[]; }; export declare const parseRawTxInputs: (rawTxHex: string) => Promise; export declare const parseRawTxBodyStakeInfo: (rawTxHex: string) => Promise; export declare const extractStakeKeyHashFromBaseAddress: (addr: string) => Promise;