import { ErroInterpretadorInterface } from '../erros/erro-interpretador-interface';
import { ResultadoParcialInterpretadorInterface } from '../resultado-parcial-interpretador-interface';
export interface RetornoInterpretadorInterface {
    erros: ErroInterpretadorInterface[];
    resultado: ResultadoParcialInterpretadorInterface[];
}
//# sourceMappingURL=retorno-interpretador-interface.d.ts.map