import { DocCollection, Processor } from 'dgeni';
/**
 * @dgProcessor
 *
 * @description
 * Merge the description from `@param` tags into the parameter docs
 * extracted from the TypeScript
 */
export declare function mergeParameterInfo(): MergeParameterInfoProcessor;
export declare class MergeParameterInfoProcessor implements Processor {
    $runAfter: string[];
    $runBefore: string[];
    $process(docs: DocCollection): void;
}
