import { VisitanteComumInterface } from '../interfaces';
import { ConstrutoInterface } from '../interfaces/construtos/construto-interface';
/**
 * Chamada de funções, métodos, etc.
 */
export declare class Chamada implements ConstrutoInterface {
    id: string;
    linha: number;
    hashArquivo: number;
    entidadeChamada: ConstrutoInterface;
    argumentos: ConstrutoInterface[];
    tipo?: string;
    constructor(hashArquivo: number, entidadeChamada: ConstrutoInterface, argumentos: ConstrutoInterface[]);
    aceitar(visitante: VisitanteComumInterface): Promise<any>;
    paraTexto(): string;
    paraTextoSaida(): string;
}
//# sourceMappingURL=chamada.d.ts.map