/**
 * Convert a string to a base64 encoded string, replacing '=' with '-'.
 * @param {string} str query string to encode
 * @returns {string}
 */
export declare function encodeQuery(str: string): string;
