import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { FeatureType } from "./feature-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type WebhookDtoFeature = { description?: string | undefined; groupId?: string | undefined; id?: string | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; meterId?: string | undefined; name?: string | undefined; type?: FeatureType | undefined; unitPlural?: string | undefined; unitSingular?: string | undefined; }; /** @internal */ export declare const WebhookDtoFeature$inboundSchema: z.ZodMiniType; export declare function webhookDtoFeatureFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-feature.d.ts.map