import type { ReachabilityOptions } from './perform-reachability-analysis.mts'; import type { REPORT_LEVEL } from './types.mts'; import type { OutputKind } from '../../types.mts'; import type { Remap } from '@socketsecurity/registry/lib/objects'; export type HandleCreateNewScanConfig = { autoManifest: boolean; branchName: string; commitHash: string; commitMessage: string; committers: string; cwd: string; defaultBranch: boolean; interactive: boolean; orgSlug: string; pendingHead: boolean; pullRequest: number; outputKind: OutputKind; reach: Remap; readOnly: boolean; repoName: string; report: boolean; reportLevel: REPORT_LEVEL; targets: string[]; tmp: boolean; workspace?: string | undefined; }; export declare function handleCreateNewScan({ autoManifest, branchName, commitHash, commitMessage, committers, cwd, defaultBranch, interactive, orgSlug, outputKind, pendingHead, pullRequest, reach, readOnly, repoName, report, reportLevel, targets, tmp, workspace }: HandleCreateNewScanConfig): Promise; //# sourceMappingURL=handle-create-new-scan.d.mts.map