import { AuthService } from '../../service/authorization'; export type AuthServiceExt = { service?: AuthService; onSuccess?: () => void; }; export type LoginContextProps = AuthServiceExt & { loading?: boolean; setLoading: (loading: boolean) => void; }; export type LoginProps = AuthServiceExt & { layout?: 'center' | 'horizontal' | 'verical'; };