import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ReportExecutionUrl = { /** * A signed URL to download the report execution file. */ url: string; /** * The date and time when the download URL expires. */ expiresAt: Date; }; /** @internal */ export declare const ReportExecutionUrl$inboundSchema: z.ZodType; export declare function reportExecutionUrlFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reportexecutionurl.d.ts.map