import { OptionValues } from 'commander'; type Options = { ci?: boolean; } & OptionValues; export declare const buildKnipReports: (paths: string[] | undefined, opts: Options) => Promise; export {};