import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DatasetResponse, DatasetResponse$Outbound } from "./datasetresponse.js"; export type GetDatasetsResponse = { success?: true | undefined; data: Array; }; /** @internal */ export declare const GetDatasetsResponse$inboundSchema: z.ZodType; /** @internal */ export type GetDatasetsResponse$Outbound = { success: true; data: Array; }; /** @internal */ export declare const GetDatasetsResponse$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 GetDatasetsResponse$ { /** @deprecated use `GetDatasetsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetDatasetsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetDatasetsResponse$Outbound` instead. */ type Outbound = GetDatasetsResponse$Outbound; } export declare function getDatasetsResponseToJSON(getDatasetsResponse: GetDatasetsResponse): string; export declare function getDatasetsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getdatasetsresponse.d.ts.map