import { User } from './types/User'; export declare const useLoggedUtils: () => { getLogged: () => User | undefined; isSuper: () => boolean | undefined; isLogged: () => boolean; setLogged: (user: User | undefined) => void; isAdminOfAnyCorpus: () => boolean; isEditorOfAnyCorpus: () => boolean; canEditCorpus: (corpusUid: string) => boolean; hasLexiconAccess: (lexiconUid: string, roles?: string[]) => boolean; hasParserAccess: (parserUid: string, roles?: string[]) => boolean; hasCorpusAccess: (corpusUid: string, roles?: string[]) => boolean; hasAnyParserAccess: () => boolean; hasAnyLexiconAccess: () => boolean; hasAnyCorpusAccess: () => boolean; };