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