import { VisitanteComumInterface } from '../interfaces';
import { ConstrutoInterface } from '../interfaces/construtos/construto-interface';
export declare class Dicionario implements ConstrutoInterface {
    linha: number;
    hashArquivo: number;
    chaves: any[];
    valores: ConstrutoInterface[];
    tipo: 'dicionário';
    esSpread: boolean[];
    constructor(hashArquivo: number, linha: number, chaves: any[], valores: ConstrutoInterface[], esSpread?: boolean[]);
    aceitar(visitante: VisitanteComumInterface): Promise<any>;
    paraTexto(): string;
    paraTextoSaida(): string;
}
//# sourceMappingURL=dicionario.d.ts.map