export interface SignInInterface {
	nameInputId: string;
	nameInputLabel: string;
	nameInputType: string;
	nameInputPlaceholder: string;
	passwordInputId: string;
	passwordInputLabel: string;
	passwordInputType: string;
	passwordInputPlaceholder: string;
	submitButtonValue: string;
	submitButtonType: 'button' | 'reset' | 'submit';
	// submitButtonLink : string;
	submitButtonId: string;
	linkToOtherPage: string;
	linkToOtherPageName: string;
	linkCognito?: string;
	linkSignUpCognito?: string;
	linkCognitoPageName?: string;
	// submitHandler : (event : FormEvent) => void;
	svg: JSX.Element | undefined;
}
