import { PilhaInterface } from "../interfaces";
import { InformacaoEscopo } from "./informacao-escopo";
export declare class PilhaEscopos implements PilhaInterface<InformacaoEscopo> {
    pilha: InformacaoEscopo[];
    constructor();
    empilhar(item: InformacaoEscopo): void;
    eVazio(): boolean;
    topoDaPilha(): InformacaoEscopo;
    removerUltimo(): InformacaoEscopo;
    obterTipoVariavelPorNome(nome: string): string;
    definirTipoVariavel(nomeVariavel: string, tipo: string): void;
}
//# sourceMappingURL=pilha-escopos.d.ts.map