import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertSettings } from "./alert-settings.js"; import { FeatureType } from "./feature-type.js"; import { GroupGroup } from "./group-group.js"; import { ReportingUnit } from "./reporting-unit.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type Feature = { alertSettings?: AlertSettings | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; description?: string | undefined; environmentId?: string | undefined; group?: GroupGroup | undefined; groupId?: string | undefined; id?: string | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; meterId?: string | undefined; name?: string | undefined; reportingUnit?: ReportingUnit | undefined; status?: Status | undefined; tenantId?: string | undefined; type?: FeatureType | undefined; unitPlural?: string | undefined; unitSingular?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const Feature$inboundSchema: z.ZodMiniType; export declare function featureFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feature.d.ts.map