import type { Mixins } from "../common"; import { WithdrawCashAPI } from "./withdrawCash"; import { SetContentRecordAPI } from "./setContentRecord"; declare const BusinessAPIs: readonly [ typeof WithdrawCashAPI, typeof SetContentRecordAPI ]; export declare class BusinessAPI { } export interface BusinessAPI extends Mixins { } export {};