type Method = 'get' | 'post'; type Params = Record; type ReqFlowConfig = { id: string | number; baseHttp: string; reqType: Method; variables: Params; isFormData: boolean; appKey?: string; appSalt?: string; }; export declare const http: import('axios').AxiosInstance; export declare const reqFlow: ({ id, baseHttp, reqType, variables, isFormData, appKey, appSalt }: ReqFlowConfig) => Promise; export default reqFlow; export declare const sendSms: (phone: string, code: string, url: string) => Promise; export declare const reqFile: (url: string, timestamp?: boolean) => Promise; export declare const reqPost: (url: string, data: any, headers?: Record) => Promise;