import { compress as honoCompress } from 'hono/compress';
/**
 * Compress the REST response
 * @example
 * ```ts
 * const action = BlazeCreator.action({
 *   rest: 'POST /',
 *   middlewares: [
 *     ['ALL', compress()]
 *   ],
 *   async handler(ctx) {
 *      /// Do something with the request
 *   }
 * })
 * ```

 */
export declare function compress(options?: Parameters<typeof honoCompress>[0]): import("hono").MiddlewareHandler;
