import { ExtractorConfig } from '@microsoft/api-extractor'; import { LibraryPackage, EntryPoint } from '../model/library'; export interface MainEntry { library: LibraryPackage; } export interface AdditionalEntry { library: LibraryPackage; entry: EntryPoint; } export interface ReportPathConfig { tempPath: string; reportPath?: string; } export declare type ApiEntry = MainEntry | AdditionalEntry; export declare const extractorConfig: (api: ApiEntry, reportPathConfig: ReportPathConfig) => ExtractorConfig;