export declare class ModuleVariable {
variableName: string;
isImported: boolean;
isExported: boolean;
exportedName: string | null;
importSourceName: string | null;
constructor(variableName: string, isImported?: boolean, isExported?: boolean, exportedName?: string | null, importSourceName?: string | null);
}