import { FileSnippetSettings, Proxy } from "./ScannnerResultPostProcessor/interfaces/types"; export declare class ScanSettingsBuilder { private readonly settingsFileSnippet; private readonly fileSnippetSettings; constructor(settingsFileSnippet?: FileSnippetSettings); withMinSnippetHits(cliValue?: number | string): this; withMinSnippetLines(cliValue?: number | string): this; withRanking(cliValue?: boolean | string): this; withRankingThreshold(cliValue?: number | string): this; withHonourFileExist(cliValue?: boolean | string): this; withProxy(cliValue?: Proxy): this; withBaseUri(cliValue?: string): this; withIgnoreCertErrors(cliValue?: boolean | string): this; withSkipHeaders(cliValue?: boolean | string): this; withSkipHeadersLimit(cliValue?: number | string): this; withDependencyAnalysis(cliValue?: boolean | string): this; build(): FileSnippetSettings | undefined; }