import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import * as components from "../components/index.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type PortalCreateSessionResponse = {
    headers: {
        [k: string]: Array<string>;
    };
    result: components.V2PortalCreateSessionResponseBody;
};
/** @internal */
export declare const PortalCreateSessionResponse$inboundSchema: z.ZodType<PortalCreateSessionResponse, z.ZodTypeDef, unknown>;
export declare function portalCreateSessionResponseFromJSON(jsonString: string): SafeParseResult<PortalCreateSessionResponse, SDKValidationError>;
//# sourceMappingURL=portalcreatesession.d.ts.map