import { LexadorInterface, ResultadoLexadorInterface } from "../interfaces";
/**
 * Importador, baseado no [Importador de Delégua Node](https://github.com/DesignLiquido/delegua-node/blob/principal/fontes/importador/importador.ts),
 * só que o retorno é o resultado do Lexador.
 */
export declare class Importador {
    diretorioBase: string;
    lexador: LexadorInterface;
    extensaoPadrao: string;
    constructor(lexador: LexadorInterface);
    importar(caminhoRelativoArquivo: string, importacaoInicial?: boolean): [string[], ResultadoLexadorInterface];
}
