import { Bitcoind } from '../../types.js';
type CreatePsbtParams = {
    bitcoind: Bitcoind;
    inputs: Array<unknown>;
    outputs: Array<unknown>;
    locktime?: number;
    replaceable?: boolean;
};
/**
 * createpsbt [{"txid":"hex","vout":n,"sequence":n},...] [{"address":amount,...},{"data":"hex"},...] ( locktime replaceable )
 *
 * Creates a transaction in the Partially Signed Transaction format.
 * Implements the Creator role.
 *
 */
export declare function createPsbt(params: CreatePsbtParams): Promise<any>;
export {};
//# sourceMappingURL=create-psbt.d.ts.map