import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ReportSpecModel } from "./reportspecmodel.js"; export type ReportSpec = { model: ReportSpecModel; /** * The parameters for the report model. */ params: { [k: string]: any; }; }; /** @internal */ export declare const ReportSpec$inboundSchema: z.ZodType; export declare function reportSpecFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reportspec.d.ts.map