export declare type AuthState = 'unauthenticated' | 'waiting' | 'error' | 'authenticated' | 'loading'; export declare type AuthStateDispatch = (newAuthState: AuthState) => void; export declare type OAuth = { authState: AuthState; setAuthState: AuthStateDispatch; };