import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Report = { /** * A unique identifier of the report request */ requestUuid?: string | undefined; /** * Current status of the report, possible values are 'succeeded', 'pending', or 'failed' */ status?: string | undefined; /** * The array of urls to access the report */ reportUrls?: Array | undefined; }; /** @internal */ export declare const Report$inboundSchema: z.ZodType; export declare function reportFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=report.d.ts.map