import { AxiosInstance } from 'axios'; declare global { interface Number { appendPx(): string; toFixedNumber(): number; formatDate(format: string): string; } interface String { cutWord(value: number): string; trimQuotes(): string; trimComma(): string; replacePowerUrl(): string; post(postdata: object, axiosInstance?: AxiosInstance): Promise; get(postdata?: object, axiosInstance?: AxiosInstance): Promise; postWithCancel(postdata: object, cancel?: any, axiosInstance?: AxiosInstance): Promise; getWithCancel(postdata?: object, cancel?: any, axiosInstance?: AxiosInstance): Promise; fetchStream(processFunc: any, data: any, options: any): any; fetchSSE(processFunc: any, data: any, options: any): any; upload(formdata: FormData): Promise; toList(valueSeparator?: string): string[]; toListNumber(valueSeparator?: string): number[]; appendPx(): string; toCamel(): string; toKebabCase(): string; toBool(): boolean; toInt(): number; toFloat(): number; addUrlParameter(param: string, value: string): string; setPowerPublicQuery(excludeQuery?: string): string; setTransferParams(transferParams?: Record): string; md5(): string; formatDate(format: string): string; getUrlParms(paramName: string): any; downloadFile(filename?: string): any; } }