import { Utxo } from "@sensible-contract/abstract-provider";
export declare type Receiver = {
    address: string;
    amount: number;
};
export declare type TransferResp = {
    txid: string;
    txHex: string;
    utxos: Utxo[];
};
export declare type signer = {
    satotxApiPrefix: string;
    satotxPubKey: string;
};
