import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ReportTemplate = { /** * List of columns recommended */ columns?: Array | undefined; /** * List of groupings recommended */ groupings?: Array | undefined; /** * Company UUID */ companyUuid?: string | undefined; /** * Type of report template */ reportType?: string | undefined; }; /** @internal */ export declare const ReportTemplate$inboundSchema: z.ZodType; export declare function reportTemplateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reporttemplate.d.ts.map