import { Target, Configuration } from '@sasjs/utils';
/**
 * Generates documentation(Doxygen)
 * By default the docs will be at 'sasjsbuild/docs' folder
 * If a target is supplied, generates docs only for the SAS programs / macros / jobs / services in that target (and the root).
 * If no target is supplied, generates for all sas programs/ macros / jobs / services.
 * @param {Target} target- the name of the target to be specific for docs.
 * @param {string} outDirectory- the name of the output folder, picks from sasjsconfig.docConfig if present.
 */
export declare function generateDocs(target?: Target, config?: Configuration, outDirectory?: string): Promise<{
    outDirectory: string;
}>;
