import { VisitanteComumInterface } from '../interfaces';
import { TipoDadosElementar } from '../tipo-dados-elementar';
import { Construto } from './construto';
export type ValorLiteral = number | string | number[] | string[] | any;
export declare class Literal implements Construto {
    linha: number;
    hashArquivo: number;
    valor: ValorLiteral;
    tipo: TipoDadosElementar;
    constructor(hashArquivo: number, linha: number, valor: ValorLiteral, tipo?: TipoDadosElementar);
    aceitar(visitante: VisitanteComumInterface): Promise<any>;
}
//# sourceMappingURL=literal.d.ts.map