import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OlapOwnerStatistic, OlapOwnerStatistic$Outbound } from "./olapownerstatistic.js"; export type OlapOwnerStatistics = { owners: Array; /** * Continuation token to paginate result */ continuation?: string | undefined; }; /** @internal */ export declare const OlapOwnerStatistics$inboundSchema: z.ZodType; /** @internal */ export type OlapOwnerStatistics$Outbound = { owners: Array; continuation?: string | undefined; }; /** @internal */ export declare const OlapOwnerStatistics$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 OlapOwnerStatistics$ { /** @deprecated use `OlapOwnerStatistics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapOwnerStatistics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapOwnerStatistics$Outbound` instead. */ type Outbound = OlapOwnerStatistics$Outbound; } export declare function olapOwnerStatisticsToJSON(olapOwnerStatistics: OlapOwnerStatistics): string; export declare function olapOwnerStatisticsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapownerstatistics.d.ts.map