import type { SignInInputs } from '../../Pages/SignUp/SignInHelper';

export type SigninContextModel = {
	credentials: SignInInputs[];
	signIn: (username: string, password: string) => void;
	username: string;
	password: string;
};
