import { ILoadForce } from "@ic-wallet-middleware/common";
import { SubAccountId } from "../../types/assets";
export interface AllowanceCacheInfo extends ILoadForce {
    ledgerAddress: string;
    subAccountId: SubAccountId;
    spenderPrincipal: string;
    spenderSubId: SubAccountId;
}
