/** * Format params to url string * @example formatUrl('/some', {key: 123}); => '/some?key=123' */ export declare function formatUrl(url: string, params?: object): string;