import type { Coordinates, Bounds } from '../client'; export declare function searchParams(data: { [x: string]: string | boolean | number; }): string; export declare function coordinatesToString(coordinates: Coordinates, ordered?: boolean): string; export declare function boundsToString(bounds: Bounds, ordered?: boolean): string; export declare function arrayToString(array: Array): string; export declare function getPlatform(platform: string): "Mac OS X" | "Windows" | "Linux" | "";