import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type TabConnectionInstance = {
    /**
     * Identifies an extension app's unique connection key.
     */
    connectionKey: string;
    /**
     * Identifies an extension app's connection instance.
     */
    connectionValue: string;
};
/** @internal */
export declare const TabConnectionInstance$inboundSchema: z.ZodType<TabConnectionInstance, z.ZodTypeDef, unknown>;
/** @internal */
export type TabConnectionInstance$Outbound = {
    connectionKey: string;
    connectionValue: string;
};
/** @internal */
export declare const TabConnectionInstance$outboundSchema: z.ZodType<TabConnectionInstance$Outbound, z.ZodTypeDef, TabConnectionInstance>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace TabConnectionInstance$ {
    /** @deprecated use `TabConnectionInstance$inboundSchema` instead. */
    const inboundSchema: z.ZodType<TabConnectionInstance, z.ZodTypeDef, unknown>;
    /** @deprecated use `TabConnectionInstance$outboundSchema` instead. */
    const outboundSchema: z.ZodType<TabConnectionInstance$Outbound, z.ZodTypeDef, TabConnectionInstance>;
    /** @deprecated use `TabConnectionInstance$Outbound` instead. */
    type Outbound = TabConnectionInstance$Outbound;
}
export declare function tabConnectionInstanceToJSON(tabConnectionInstance: TabConnectionInstance): string;
export declare function tabConnectionInstanceFromJSON(jsonString: string): SafeParseResult<TabConnectionInstance, SDKValidationError>;
//# sourceMappingURL=tabconnectioninstance.d.ts.map