import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OlapOwnerStatistic = { /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ owner: string; ownedItems: number; }; /** @internal */ export declare const OlapOwnerStatistic$inboundSchema: z.ZodType; /** @internal */ export type OlapOwnerStatistic$Outbound = { owner: string; ownedItems: number; }; /** @internal */ export declare const OlapOwnerStatistic$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 OlapOwnerStatistic$ { /** @deprecated use `OlapOwnerStatistic$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapOwnerStatistic$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapOwnerStatistic$Outbound` instead. */ type Outbound = OlapOwnerStatistic$Outbound; } export declare function olapOwnerStatisticToJSON(olapOwnerStatistic: OlapOwnerStatistic): string; export declare function olapOwnerStatisticFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapownerstatistic.d.ts.map