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