import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const ReportStatusResponseStatus: { readonly Pending: "PENDING"; readonly Success: "SUCCESS"; readonly Failure: "FAILURE"; readonly Cancelled: "CANCELLED"; readonly Cancelling: "CANCELLING"; readonly Active: "ACTIVE"; }; export type ReportStatusResponseStatus = OpenEnum; export type ReportStatusResponse = { status?: ReportStatusResponseStatus | undefined; /** * The timestamp at which the report's run/scan began. */ startTime?: string | undefined; }; /** @internal */ export declare const ReportStatusResponseStatus$inboundSchema: z.ZodType; /** @internal */ export declare const ReportStatusResponse$inboundSchema: z.ZodType; export declare function reportStatusResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reportstatusresponse.d.ts.map