import type { z } from 'zod';
import type { LoginEndpointResponseSchema, LoginPageResponseSchema, LoginRequestSchema, LoginResponseSchema } from './login.schemas.js';
export type LoginRequest = z.infer<typeof LoginRequestSchema>;
export type LoginEndpointResponse = z.infer<typeof LoginEndpointResponseSchema>;
export type LoginPageResponse = z.infer<typeof LoginPageResponseSchema>;
export type LoginResponse = z.infer<typeof LoginResponseSchema>;
//# sourceMappingURL=login.types.d.ts.map