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"; export declare const ConnectorSettingType: { readonly Text: "text"; readonly Checkbox: "checkbox"; readonly Tel: "tel"; readonly Email: "email"; readonly Url: "url"; readonly Textarea: "textarea"; readonly Select: "select"; readonly FilteredSelect: "filtered-select"; readonly MultiSelect: "multi-select"; readonly Datetime: "datetime"; readonly Date: "date"; readonly Time: "time"; readonly Number: "number"; readonly Password: "password"; }; export type ConnectorSettingType = ClosedEnum; export type ConnectorSetting = { id?: string | undefined; label?: string | undefined; type?: ConnectorSettingType | undefined; }; /** @internal */ export declare const ConnectorSettingType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ConnectorSettingType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConnectorSettingType$ { /** @deprecated use `ConnectorSettingType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Text: "text"; readonly Checkbox: "checkbox"; readonly Tel: "tel"; readonly Email: "email"; readonly Url: "url"; readonly Textarea: "textarea"; readonly Select: "select"; readonly FilteredSelect: "filtered-select"; readonly MultiSelect: "multi-select"; readonly Datetime: "datetime"; readonly Date: "date"; readonly Time: "time"; readonly Number: "number"; readonly Password: "password"; }>; /** @deprecated use `ConnectorSettingType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Text: "text"; readonly Checkbox: "checkbox"; readonly Tel: "tel"; readonly Email: "email"; readonly Url: "url"; readonly Textarea: "textarea"; readonly Select: "select"; readonly FilteredSelect: "filtered-select"; readonly MultiSelect: "multi-select"; readonly Datetime: "datetime"; readonly Date: "date"; readonly Time: "time"; readonly Number: "number"; readonly Password: "password"; }>; } /** @internal */ export declare const ConnectorSetting$inboundSchema: z.ZodType; /** @internal */ export type ConnectorSetting$Outbound = { id?: string | undefined; label?: string | undefined; type?: string | undefined; }; /** @internal */ export declare const ConnectorSetting$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 ConnectorSetting$ { /** @deprecated use `ConnectorSetting$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConnectorSetting$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConnectorSetting$Outbound` instead. */ type Outbound = ConnectorSetting$Outbound; } export declare function connectorSettingToJSON(connectorSetting: ConnectorSetting): string; export declare function connectorSettingFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connectorsetting.d.ts.map