export type SigninFormValues = {
  email: string;
  password: string;
}

export type SignupFormValues = {
  email: string;
  password: string;
};