/** * Downloads the results of a completed bulk operation. * * @param url - The results URL returned by the Admin API. * @returns The raw JSONL results as a string. */ export declare function downloadBulkOperationResults(url: string): Promise; /** * Checks whether any line of a JSONL bulk operation result reports GraphQL user errors. * * Blank result files, such as a completed operation that matched nothing, are treated as having * no user errors instead of crashing the JSON parser. * * @param results - The raw JSONL results string. * @returns True if any result line reports user errors. */ export declare function resultsContainUserErrors(results: string): boolean;