import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FeatureNode, FeatureNode$Outbound } from "./featurenode.js"; export type FeatureTreeModel = { type: { [k: string]: Array; }; category: { [k: string]: Array; }; region: { [k: string]: Array; }; dataFrequency: { [k: string]: Array; }; phenologyStage: { [k: string]: Array; }; }; /** @internal */ export declare const FeatureTreeModel$inboundSchema: z.ZodType; /** @internal */ export type FeatureTreeModel$Outbound = { type: { [k: string]: Array; }; category: { [k: string]: Array; }; region: { [k: string]: Array; }; data_frequency: { [k: string]: Array; }; phenology_stage: { [k: string]: Array; }; }; /** @internal */ export declare const FeatureTreeModel$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 FeatureTreeModel$ { /** @deprecated use `FeatureTreeModel$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeatureTreeModel$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeatureTreeModel$Outbound` instead. */ type Outbound = FeatureTreeModel$Outbound; } export declare function featureTreeModelToJSON(featureTreeModel: FeatureTreeModel): string; export declare function featureTreeModelFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=featuretreemodel.d.ts.map