import { ElectrumApiInterface } from "../api/electrum-api.interface";
import { CommandInterface } from "./command.interface";
import { BaseRequestOptions } from "../interfaces/api.interface";
export declare class InitInteractiveFixedDftCommand implements CommandInterface {
    private electrumApi;
    private options;
    private file;
    private address;
    private requestTicker;
    private mintAmount;
    private maxMints;
    private mintHeight;
    private mintBitworkCommit;
    private mintBitworkReveal;
    private fundingWIF;
    private noimage?;
    constructor(electrumApi: ElectrumApiInterface, options: BaseRequestOptions, file: string, address: string, requestTicker: string, mintAmount: number, maxMints: number, mintHeight: number, mintBitworkCommit: string, mintBitworkReveal: string | null, fundingWIF: string, noimage?: boolean | undefined);
    run(): Promise<any>;
}
