import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Attributes = string | boolean | number; export type FileSearchResult = { attributes?: { [k: string]: string | boolean | number; } | undefined; fileId?: string | undefined; filename?: string | undefined; score?: number | undefined; text?: string | undefined; }; /** @internal */ export declare const Attributes$inboundSchema: z.ZodType; /** @internal */ export type Attributes$Outbound = string | boolean | number; /** @internal */ export declare const Attributes$outboundSchema: z.ZodType; export declare function attributesToJSON(attributes: Attributes): string; export declare function attributesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileSearchResult$inboundSchema: z.ZodType; /** @internal */ export type FileSearchResult$Outbound = { attributes?: { [k: string]: string | boolean | number; } | undefined; file_id?: string | undefined; filename?: string | undefined; score?: number | undefined; text?: string | undefined; }; /** @internal */ export declare const FileSearchResult$outboundSchema: z.ZodType; export declare function fileSearchResultToJSON(fileSearchResult: FileSearchResult): string; export declare function fileSearchResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filesearchresult.d.ts.map