import { VisitanteDeleguaInterface } from '../interfaces';
import { ConstrutoInterface } from '../interfaces/construtos/construto-interface';
export declare class Elvis implements ConstrutoInterface {
    linha: number;
    hashArquivo: number;
    esquerda: ConstrutoInterface;
    direita: ConstrutoInterface;
    constructor(hashArquivo: number, esquerda: ConstrutoInterface, direita: ConstrutoInterface);
    aceitar(visitante: VisitanteDeleguaInterface): Promise<any>;
    paraTexto(): string;
    paraTextoSaida(): string;
}
//# sourceMappingURL=elvis.d.ts.map