import React from 'react'; import type { SubmitHandler } from 'react-hook-form'; import * as z from 'zod'; declare const schema: z.ZodObject<{ name: z.ZodOptional; email: z.ZodString; password: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; password: string; name?: string | undefined; }, { email: string; password: string; name?: string | undefined; }>; export type FormType = z.infer; export type LoginFormProps = { onSubmit?: SubmitHandler; }; export declare const LoginForm: ({ onSubmit }: LoginFormProps) => React.JSX.Element; export {}; //# sourceMappingURL=login-form.d.ts.map