interface IOutput { address: string; value: number; } interface IRezOutput { value: number; hash: string; hex: string; index: number; } interface IInput { prevout: { hash: string; index: number; }; } interface ITransaction { hash: string; hex: string; outputs: IOutput[]; inputs: IInput[]; } export declare const getActualOutputs: (txs: ITransaction[], mainAddress: string) => IRezOutput[]; export {};