import { Bitcoind, Json } from '../../types.js';
type SendManyParams = {
    bitcoind: Bitcoind;
    dummy?: string;
    amounts: Json;
    minconf?: number;
    comment?: string;
    subtractfeefrom?: Array<unknown>;
    replaceable?: boolean;
    conf_target?: number;
    estimate_mode?: string;
    fee_rate?: number | string;
    verbose?: boolean;
};
/**
 * sendmany ( "" ) {"address":amount,...} ( minconf "comment" ["address",...] replaceable conf_target "estimate_mode" fee_rate verbose )
 *
 * Send multiple times. Amounts are double-precision floating point numbers.
 * Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.
 *
 */
export declare function sendMany(params: SendManyParams): Promise<any>;
export {};
//# sourceMappingURL=send-many.d.ts.map