import { Bitcoind, Json } from '../../types.js';
type ListUnspentParams = {
    bitcoind: Bitcoind;
    minconf?: number;
    maxconf?: number;
    addresses?: Array<unknown>;
    include_unsafe?: boolean;
    query_options?: Json;
};
/**
 * listunspent ( minconf maxconf ["address",...] include_unsafe query_options )
 *
 * Returns array of unspent transaction outputs
 * with between minconf and maxconf (inclusive) confirmations.
 * Optionally filter to only include txouts paid to specified addresses.
 *
 */
export declare function listUnspent(params: ListUnspentParams): Promise<any>;
export {};
//# sourceMappingURL=list-unspent.d.ts.map