import { VisitanteComumInterface, SimboloInterface } from '../interfaces';
import { ConstrutoInterface } from '../interfaces/construtos/construto-interface';
export declare class AcessoElementoMatriz<TTipoSimbolo extends string = string> implements ConstrutoInterface {
    linha: number;
    hashArquivo: number;
    entidadeChamada: ConstrutoInterface;
    simboloFechamento: SimboloInterface<TTipoSimbolo>;
    indicePrimario: ConstrutoInterface;
    indiceSecundario: ConstrutoInterface;
    constructor(hashArquivo: number, entidadeChamada: ConstrutoInterface, indicePrimario: ConstrutoInterface, indiceSegundario: ConstrutoInterface, simboloFechamento: SimboloInterface<TTipoSimbolo>);
    valor?: any;
    tipo?: string;
    aceitar(visitante: VisitanteComumInterface): Promise<any>;
    paraTexto(): string;
    paraTextoSaida(): string;
}
//# sourceMappingURL=acesso-elemento-matriz.d.ts.map