export interface PilhaInterface<T> {
    pilha: Array<T>;
    empilhar(item: T): void;
    eVazio(): boolean;
    topoDaPilha(): T;
    removerUltimo(): T;
}
//# sourceMappingURL=pilha-interface.d.ts.map