import { z } from 'zod';
/**
 * Schema for an auth response from `/auth/apiGrant`, `/auth/oauth/token`, and
 * `/auth/apiRefresh`.
 */
export declare const AuthedSchema: z.ZodObject<{
    idToken: z.ZodString;
    refreshToken: z.ZodString;
    expiresAt: z.ZodNumber;
}, z.core.$loose>;
/**
 * A response from the a2w auth endpoints.
 */
export type Authed = z.infer<typeof AuthedSchema>;
