import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestResponse = { httpMeta: components.HTTPMetadata; /** * Result of the operation. */ authStartResponse?: components.AuthStartResponse | undefined; }; /** @internal */ export declare const AuthStartRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AuthStartResponse?: components.AuthStartResponse$Outbound | undefined; }; /** @internal */ export declare const AuthStartRequestResponse$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 AuthStartRequestResponse$ { /** @deprecated use `AuthStartRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestResponse$Outbound` instead. */ type Outbound = AuthStartRequestResponse$Outbound; } export declare function authStartRequestResponseToJSON(authStartRequestResponse: AuthStartRequestResponse): string; export declare function authStartRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequest.d.ts.map