import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type DecentralizationSubScore = { /** * Countries Score */ countries?: string | undefined; /** * Cities Score */ cities?: string | undefined; /** * Data Centers Score */ dataCenters?: string | undefined; /** * Node Providers Score */ nodeProviders?: string | undefined; /** * Data Center Owners Score */ dataCenterOwners?: string | undefined; }; /** @internal */ export declare const DecentralizationSubScore$inboundSchema: z.ZodType; /** @internal */ export type DecentralizationSubScore$Outbound = { countries?: string | undefined; cities?: string | undefined; data_centers?: string | undefined; node_providers?: string | undefined; data_center_owners?: string | undefined; }; /** @internal */ export declare const DecentralizationSubScore$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 DecentralizationSubScore$ { /** @deprecated use `DecentralizationSubScore$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DecentralizationSubScore$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DecentralizationSubScore$Outbound` instead. */ type Outbound = DecentralizationSubScore$Outbound; } export declare function decentralizationSubScoreToJSON(decentralizationSubScore: DecentralizationSubScore): string; export declare function decentralizationSubScoreFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=decentralizationsubscore.d.ts.map