import type { Feature } from '../../feature'; import type { Writable } from 'ts-essentials'; declare const initialVariableInfo: { numberOfVariableUses: number; numberOfDefinitions: number; numberOfRedefinitions: number; unknownVariables: number; }; export type VariableInfo = Writable; export type DefinedVariableInformation = [ name: string, location: [line: number, character: number] ]; export declare const variables: Feature; export {};