import { OptionValues } from 'commander'; type Options = { ci?: boolean; docs?: boolean; tsc?: boolean; allowWarnings?: string; allowAllWarnings?: boolean; omitMessages?: string; validateReleaseTags?: boolean; } & OptionValues; export declare const buildApiReports: (paths: string[] | undefined, opts: Options) => Promise; export {};