export function revokeAccountSponsorship(opts?: {
    account: string;
    source?: string | undefined;
}): xdr.Operation;
export function revokeTrustlineSponsorship(opts?: {
    account: string;
    asset: Asset | LiquidityPoolId;
    source?: string | undefined;
}): xdr.Operation;
export function revokeOfferSponsorship(opts?: {
    seller: string;
    offerId: string;
    source?: string | undefined;
}): xdr.Operation;
export function revokeDataSponsorship(opts?: {
    account: string;
    name: string;
    source?: string | undefined;
}): xdr.Operation;
export function revokeClaimableBalanceSponsorship(opts?: {
    balanceId: string;
    source?: string | undefined;
}): xdr.Operation;
export function revokeLiquidityPoolSponsorship(opts?: {
    liquidityPoolId: string;
    source?: string | undefined;
}): xdr.Operation;
export function revokeSignerSponsorship(opts?: {
    account: string;
    signer: {
        ed25519PublicKey?: string | undefined;
        sha256Hash?: string | Buffer | undefined;
        preAuthTx?: string | Buffer | undefined;
    };
    source?: string | undefined;
}): xdr.Operation;
import { Asset } from "../asset";
import { LiquidityPoolId } from "../liquidity_pool_id";
