import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CustomAnalyticItem = { /** * Name of the feature this applies to */ featureName?: string | undefined; id?: string | undefined; /** * Calculation name (e.g., "Revenue per Minute") */ name?: string | undefined; /** * "feature", "meter", "event_name" */ type?: string | undefined; value?: string | undefined; }; /** @internal */ export declare const CustomAnalyticItem$inboundSchema: z.ZodMiniType; export declare function customAnalyticItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=custom-analytic-item.d.ts.map