import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class Reports extends ClientSDK { /** * Creates new one-time report * * @remarks * Creates a new one-time report and executes its batch job. */ create(request: components.UpdateDlpConfigRequest, options?: RequestOptions): Promise; /** * Downloads violations CSV for report * * @remarks * Downloads CSV violations report for a specific report id. */ download(id: string, options?: RequestOptions): Promise; /** * Fetches report run status * * @remarks * Fetches the status of the run corresponding to the report-id. */ status(id: string, options?: RequestOptions): Promise; } //# sourceMappingURL=reports.d.ts.map