import type { Context } from "hono";
import type { ServerEnv } from "../../modules/Controller";
export declare function shouldSkip(c: Context<ServerEnv>, skip?: (string | RegExp)[]): boolean;
export declare const auth: (options?: {
    skip?: (string | RegExp)[];
}) => import("hono").MiddlewareHandler<ServerEnv, string, {}, Response>;
