export declare enum MimeType { SVG = "image/svg+xml", TINYSVG = "image/tinysvg", PNG = "image/png", JPG = "image/jpeg", GIF = "image/gif", WEBP = "image/webp", MP4 = "video/mp4", WEBM = "video/webm", OGG = "video/ogg", FLAC = "audio/flac", MP3 = "audio/mpeg", WAV = "audio/wav", OGA = "audio/ogg", JSON = "application/json", TEXT = "text/plain", HTML = "text/html", CSS = "text/css", JS = "text/javascript", WOFF = "font/woff", WOFF2 = "font/woff2", TTF = "font/ttf", EOT = "font/eot", OTF = "font/otf", ICO = "image/x-icon", PDF = "application/pdf", ZIP = "application/zip", RAR = "application/x-rar-compressed", TAR = "application/x-tar", GZ = "application/gzip" } export declare const chainIds: { mainnet: number; ropsten: number; rinkeby: number; goerli: number; kovan: number; polygon: number; mumbai: number; bsc: number; bscTestnet: number; ganache: number; }; export declare const getCurrentURI: () => string; export declare const getCurrentLinkableLocation: (addEndingSlash?: boolean) => string; export declare const isLocalhost: () => boolean; export declare const isApiAlive: () => Promise; export declare const getMimeType: (extension: string) => MimeType; export declare const apiGet: (route: string, params?: any, forceDeveloper?: boolean, abortController?: AbortController) => Promise; /** * Use this to get the projects full name * @param name * @param version * @param network * @returns */ export declare const toProjectFullName: (name: string, version: string, network: string) => string; /** * * @returns */ export declare const isProduction: () => boolean; export declare const warning: (...args: any[]) => void; export declare const log: (...args: any[]) => void; export declare const getAddressFromPrivateKey: (privateKey: string) => any; export declare const apiFetch: (route: string, options?: RequestInit, forceDeveloper?: boolean) => Promise; export declare const unpackColours: (colours: any) => any[]; export declare const getApiEndpoint: (route: string, forceDeveloper?: boolean) => string; export declare const cutLongString: (str: string, length?: number) => string; //# sourceMappingURL=helpers.d.ts.map