/** * @author songxiwen * @date 2021/03/02 11:02 */ import type { ResourceSDKType } from '../type/common.type'; export declare class ScfRequestHelper { static getCredential(params: { config: ResourceSDKType; body?: { [key: string]: any; }; queryParams?: { [key: string]: string; }; }): Promise<{ data?: TResponseData; message?: string; }>; static getLiveTableFileIdByKey(params: { config: ResourceSDKType; body: { key: string; }; }): Promise<{ data?: TResponseData; message?: string; }>; }