import { Declaration } from './declaration'; import { Symbol } from './symbol'; export declare function getLastTypedDeclarationForSymbol(symbol: Symbol): Declaration | undefined; export declare function isTypedDictMemberAccessedThroughIndex(symbol: Symbol): boolean; export declare function isVisibleExternally(symbol: Symbol): boolean; export declare function isEffectivelyClassVar(symbol: Symbol, isInDataclass: boolean): boolean;