import type { EvidencePackage } from './types.js'; export interface UploadEvidenceOptions { url?: string; token?: string; timeoutMs?: number; } export interface UploadEvidenceResult { ok: boolean; status: number; scanId?: string; projectId?: string; message?: string; } /** * Upload an already-verified evidence package. Tokens are accepted only in the * Authorization header and are never included in the result or thrown errors. */ export declare function uploadEvidencePackage(evidence: EvidencePackage, options?: UploadEvidenceOptions): Promise; export declare function uploadEvidenceFile(path: string, options?: UploadEvidenceOptions): Promise; //# sourceMappingURL=upload.d.ts.map