import type { Utxo, NetworkProvider } from "cashscript";
import type { UtxPhiIface, ContractOptions } from "../../common/interface.js";
import { BaseUtxPhiContract } from "../../common/contract.js";
export declare class Drip extends BaseUtxPhiContract implements UtxPhiIface {
    options: ContractOptions;
    static c: string;
    private static fn;
    static minPayout: bigint;
    constructor(options?: ContractOptions);
    refresh(): void;
    static fromString(str: string, network?: string): Drip;
    static fromOpReturn(opReturn: Uint8Array | string, network?: string): Drip;
    static getSpendableBalance(opReturn: Uint8Array | string, network: string | undefined, networkProvider: NetworkProvider, blockHeight: number): Promise<bigint>;
    static getExecutorAllowance(opReturn: Uint8Array | string, network?: string): bigint;
    toString(): string;
    asText(): string;
    asCommand(): string;
    toOpReturn(hex?: boolean): string | Uint8Array;
    getOutputLockingBytecodes(hex?: boolean): never[];
    isSpecial(): boolean;
    execute(exAddress?: string, fee?: bigint, utxos?: Utxo[], debug?: boolean): Promise<string>;
    doDrip(utxo: Utxo, fn: any): Promise<string>;
}
//# sourceMappingURL=Drip.d.ts.map