import * as z from "zod";
import { ClosedEnum } from "../../types/enums.js";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
/**
 * The operation that the field supports.
 */
export declare const SupportedOperation: {
    readonly VerifyType: "VerifyType";
};
/**
 * The operation that the field supports.
 */
export type SupportedOperation = ClosedEnum<typeof SupportedOperation>;
export type TabConnectedFieldsData = {
    /**
     * The fully qualified namespace for the type system being verified.
     */
    typeSystemNamespace: string;
    /**
     * Name of the type being verified.
     */
    typeName: string;
    /**
     * The operation that the field supports.
     */
    supportedOperation: SupportedOperation;
    /**
     * The name of the individual field being verified.
     */
    propertyName: string;
    /**
     * Indicates the type verification url of the field.
     */
    supportedUri: string;
};
/** @internal */
export declare const SupportedOperation$inboundSchema: z.ZodNativeEnum<typeof SupportedOperation>;
/** @internal */
export declare const SupportedOperation$outboundSchema: z.ZodNativeEnum<typeof SupportedOperation>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace SupportedOperation$ {
    /** @deprecated use `SupportedOperation$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly VerifyType: "VerifyType";
    }>;
    /** @deprecated use `SupportedOperation$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly VerifyType: "VerifyType";
    }>;
}
/** @internal */
export declare const TabConnectedFieldsData$inboundSchema: z.ZodType<TabConnectedFieldsData, z.ZodTypeDef, unknown>;
/** @internal */
export type TabConnectedFieldsData$Outbound = {
    typeSystemNamespace: string;
    typeName: string;
    supportedOperation: string;
    propertyName: string;
    supportedUri: string;
};
/** @internal */
export declare const TabConnectedFieldsData$outboundSchema: z.ZodType<TabConnectedFieldsData$Outbound, z.ZodTypeDef, TabConnectedFieldsData>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace TabConnectedFieldsData$ {
    /** @deprecated use `TabConnectedFieldsData$inboundSchema` instead. */
    const inboundSchema: z.ZodType<TabConnectedFieldsData, z.ZodTypeDef, unknown>;
    /** @deprecated use `TabConnectedFieldsData$outboundSchema` instead. */
    const outboundSchema: z.ZodType<TabConnectedFieldsData$Outbound, z.ZodTypeDef, TabConnectedFieldsData>;
    /** @deprecated use `TabConnectedFieldsData$Outbound` instead. */
    type Outbound = TabConnectedFieldsData$Outbound;
}
export declare function tabConnectedFieldsDataToJSON(tabConnectedFieldsData: TabConnectedFieldsData): string;
export declare function tabConnectedFieldsDataFromJSON(jsonString: string): SafeParseResult<TabConnectedFieldsData, SDKValidationError>;
//# sourceMappingURL=tabconnectedfieldsdata.d.ts.map