import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateCallbackStateResponseData = { /** * Callback state */ state?: string | undefined; }; /** * Callback state created */ export type CreateCallbackStateResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: CreateCallbackStateResponseData; }; /** @internal */ export declare const CreateCallbackStateResponseData$inboundSchema: z.ZodType; /** @internal */ export type CreateCallbackStateResponseData$Outbound = { state?: string | undefined; }; /** @internal */ export declare const CreateCallbackStateResponseData$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 CreateCallbackStateResponseData$ { /** @deprecated use `CreateCallbackStateResponseData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateCallbackStateResponseData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateCallbackStateResponseData$Outbound` instead. */ type Outbound = CreateCallbackStateResponseData$Outbound; } export declare function createCallbackStateResponseDataToJSON(createCallbackStateResponseData: CreateCallbackStateResponseData): string; export declare function createCallbackStateResponseDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreateCallbackStateResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateCallbackStateResponse$Outbound = { status_code: number; status: string; data: CreateCallbackStateResponseData$Outbound; }; /** @internal */ export declare const CreateCallbackStateResponse$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 CreateCallbackStateResponse$ { /** @deprecated use `CreateCallbackStateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateCallbackStateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateCallbackStateResponse$Outbound` instead. */ type Outbound = CreateCallbackStateResponse$Outbound; } export declare function createCallbackStateResponseToJSON(createCallbackStateResponse: CreateCallbackStateResponse): string; export declare function createCallbackStateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createcallbackstateresponse.d.ts.map