import { Bitcoind } from '../../types.js';
type ListTransactionsParams = {
    bitcoind: Bitcoind;
    label?: string;
    count?: number;
    skip?: number;
    include_watchonly?: boolean;
};
/**
 * listtransactions ( "label" count skip include_watchonly )
 *
 * If a label name is provided, this will return only incoming transactions paying to addresses with the specified label.
 * Returns up to 'count' most recent transactions skipping the first 'from' transactions.
 *
 */
export declare function listTransactions(params: ListTransactionsParams): Promise<any>;
export {};
//# sourceMappingURL=list-transactions.d.ts.map