import * as z from "zod/v3";
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 TabConnectedFieldsData$inboundSchema: z.ZodType<TabConnectedFieldsData, z.ZodTypeDef, unknown>;
export declare function tabConnectedFieldsDataFromJSON(jsonString: string): SafeParseResult<TabConnectedFieldsData, SDKValidationError>;
//# sourceMappingURL=tabconnectedfieldsdata.d.ts.map