import * as z from 'zod/mini'; import type * as App from '../../../App.js'; import * as Response from '../../../internal/Response.js'; /** Zod schemas owned by the current-user resource. */ export declare namespace schema { /** The signed-in developer. */ const User: z.ZodMiniObject<{ address: z.ZodMiniOptional>; createdAt: z.ZodMiniISODateTime; email: z.ZodMiniOptional; id: z.ZodMiniString; updatedAt: z.ZodMiniISODateTime; }, z.core.$strip>; } /** * Mounts the `/me` resource: the session's user. Session lane only — API keys * identify workloads, not developers. */ export declare function me(): import("hono/hono-base").HonoBase; //# sourceMappingURL=me.d.ts.map