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