import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FeatureDrilldown = { featureCode: string; contribution: number; description: string; }; /** @internal */ export declare const FeatureDrilldown$inboundSchema: z.ZodType; /** @internal */ export type FeatureDrilldown$Outbound = { feature_code: string; contribution: number; description: string; }; /** @internal */ export declare const FeatureDrilldown$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FeatureDrilldown$ { /** @deprecated use `FeatureDrilldown$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeatureDrilldown$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeatureDrilldown$Outbound` instead. */ type Outbound = FeatureDrilldown$Outbound; } export declare function featureDrilldownToJSON(featureDrilldown: FeatureDrilldown): string; export declare function featureDrilldownFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=featuredrilldown.d.ts.map