import * as z from 'zod/mini'; import type * as App from '../App.js'; /** Zod schemas owned by the admin scope catalog handler. */ export declare namespace schema { /** Schemas for the getAdminScopes operation. */ namespace getScopes { /** A single issuable API-key scope. */ const Scope: z.ZodMiniObject<{ description: z.ZodMiniString; scope: z.ZodMiniString; selfServe: z.ZodMiniBoolean; }, z.core.$strip>; /** Response body for the scope catalog. */ const Response: z.ZodMiniObject<{ data: z.ZodMiniArray; scope: z.ZodMiniString; selfServe: z.ZodMiniBoolean; }, z.core.$strip>>; }, z.core.$strip>; } } /** Catalog of API-key scopes, including dynamic scope templates. */ export declare function scopes(): import("hono/hono-base").HonoBase; //# sourceMappingURL=scopes.d.ts.map