import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DataSourceNameResponseInternal = { firstName?: number | undefined; lastName?: number | undefined; nameScore?: number | undefined; }; /** @internal */ export declare const DataSourceNameResponseInternal$inboundSchema: z.ZodType; /** @internal */ export type DataSourceNameResponseInternal$Outbound = { firstName?: number | undefined; lastName?: number | undefined; nameScore?: number | undefined; }; /** @internal */ export declare const DataSourceNameResponseInternal$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 DataSourceNameResponseInternal$ { /** @deprecated use `DataSourceNameResponseInternal$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DataSourceNameResponseInternal$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DataSourceNameResponseInternal$Outbound` instead. */ type Outbound = DataSourceNameResponseInternal$Outbound; } export declare function dataSourceNameResponseInternalToJSON(dataSourceNameResponseInternal: DataSourceNameResponseInternal): string; export declare function dataSourceNameResponseInternalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=datasourcenameresponseinternal.d.ts.map