/**
 * 🔹 Compress object -> base64url for query string
 *
 * This is a helper to support https://github.com/shopware/shopware/issues/12388 for _criteria query field in store-api GET requests
 *
 */
declare function encodeForQuery(obj: unknown): string;

export { encodeForQuery };
