import { Bitcoind } from '../../types.js';
type GetReceivedByLabelParams = {
    bitcoind: Bitcoind;
    label: string;
    minconf?: number;
    include_immature_coinbase?: boolean;
};
/**
 * getreceivedbylabel "label" ( minconf include_immature_coinbase )
 *
 * Returns the total amount received by addresses with <label> in transactions with at least [minconf] confirmations.
 *
 */
export declare function getReceivedByLabel(params: GetReceivedByLabelParams): Promise<any>;
export {};
//# sourceMappingURL=get-received-by-label.d.ts.map