import type * as SVC from "@distilled.cloud/aws/codebuild"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { ReportGroup } from "./ReportGroup.ts"; /** * Runtime binding for `codebuild:DeleteReport` — deletes a report of the * bound report group by report ARN. * ### Reading Reports * **Example:** Delete an Old Report * ```typescript * const deleteReport = yield* AWS.CodeBuild.DeleteReport(reportGroup); * * yield* deleteReport({ arn: reportArn }); * ``` * * @binding */ export interface DeleteReport extends Binding.Service(reportGroup: G) => Effect.Effect<(request: SVC.DeleteReportInput) => Effect.Effect>> { } export declare const DeleteReport: DeleteReport; //# sourceMappingURL=DeleteReport.d.ts.map