import { z } from 'zod';
export declare const LoginDtoSchema: z.ZodObject<{
email: z.ZodString;
password: z.ZodString;
}, "strip", z.ZodTypeAny, {
email: string;
password: string;
}, {
email: string;
password: string;
}>;
export type LoginDto = z.infer<typeof LoginDtoSchema>;