import type { InferType } from "yup";
declare const schemaSignin: import("yup").ObjectSchema<any, import("yup").AnyObject, any, "">;
declare const schemaSignup: import("yup").ObjectSchema<any, import("yup").AnyObject, any, "">;
export type SigninValues = InferType<typeof schemaSignin>;
export type SignupValues = InferType<typeof schemaSignup>;
export {};
