import { FunctionComponent } from "react"; import { CurrentUser } from "../models/current-user.model"; declare const useAuth: () => { currentUser: CurrentUser; logout: () => void; switchUser: (tenantUserId: string) => void; refreshCurrentUser: () => void; }; interface NblocksContextProps { } declare const NblocksAuthContextProvider: FunctionComponent; export { NblocksAuthContextProvider, useAuth };