import { VisitanteComumInterface, SimboloInterface } from '../interfaces';
import { ConstrutoInterface } from '../interfaces/construtos/construto-interface';
export declare class Logico<TTipoSimbolo extends string = string> implements ConstrutoInterface {
    linha: number;
    hashArquivo: number;
    esquerda: ConstrutoInterface;
    operador: SimboloInterface<TTipoSimbolo>;
    direita: ConstrutoInterface;
    negado: boolean;
    constructor(hashArquivo: number, esquerda: ConstrutoInterface, operador: SimboloInterface<TTipoSimbolo>, direita: ConstrutoInterface);
    aceitar(visitante: VisitanteComumInterface): Promise<any>;
    paraTexto(): string;
    paraTextoSaida(): string;
}
//# sourceMappingURL=logico.d.ts.map