import { z } from 'zod'; export declare namespace FindAccessTokenCommand { const ResponseSchema: z.ZodObject<{ isAuth: z.ZodBoolean; status: z.ZodBoolean; }, "strip", z.ZodTypeAny, { status: boolean; isAuth: boolean; }, { status: boolean; isAuth: boolean; }>; type Response = z.infer; }