/** * POST a parsed audit summary to the pseolint Pro ingestion endpoint. * The summary should already be the JSON-output shape (what `pseolint scan * --format json` produces). Used both by the standalone `upload` command * and the v0.5.6 inline `--upload-to` shortcut on the main scan command. */ export declare function uploadSummary(args: { summary: unknown; token: string; domainId: string; endpoint?: string; }): Promise<{ ingested: number; }>; export declare function uploadCommand(args: { reportPath: string; token: string; domainId: string; endpoint?: string; }): Promise; //# sourceMappingURL=upload.d.ts.map