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 { GroupResponse } from "./group-response.js"; import { MeterResponse } from "./meter-response.js"; import { ReportingUnit } from "./reporting-unit.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type FeatureResponse = { alertSettings?: AlertSettings | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; description?: string | undefined; environmentId?: string | undefined; group?: GroupResponse | undefined; groupId?: string | undefined; id?: string | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; meter?: MeterResponse | 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 FeatureResponse$inboundSchema: z.ZodMiniType; export declare function featureResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feature-response.d.ts.map