export type PublicApiOperators = "or" | "and" | "OR" | "AND"; export interface ConcatParams { baseUrl: string; params: Record; } declare function isLocalStorageAvailable(): boolean; declare function getToken(): { Authorization: string; } | null; declare function getSiteID(): any; declare function getLangFromLocalStorage(): number | null; /** * concatParams * @param params * @param params.baseUrl base url of the api * @param params.params object with the params to be sent * @returns a string with the params concatenated */ declare function concatParams({ baseUrl, params }: ConcatParams): string; export { concatParams, getLangFromLocalStorage, getSiteID, getToken, isLocalStorageAvailable, };