import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ProductFeatureType } from "./productfeaturetype.js"; export type FeatureEntity = { /** * Unique identifier for the feature. */ id: string; /** * The type of the feature: privateNote (custom note), file (downloadable files), or licenseKey (license key). */ type: ProductFeatureType; /** * A brief description of the feature. */ description: string; }; /** @internal */ export declare const FeatureEntity$inboundSchema: z.ZodType; /** @internal */ export type FeatureEntity$Outbound = { id: string; type: string; description: string; }; /** @internal */ export declare const FeatureEntity$outboundSchema: z.ZodType; export declare function featureEntityToJSON(featureEntity: FeatureEntity): string; export declare function featureEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=featureentity.d.ts.map