import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AttachmentReferenceType } from "./attachmentreferencetype.js"; export type AttachmentReference = { type?: AttachmentReferenceType | undefined; /** * A unique identifier for an object. */ id?: string | undefined; }; /** @internal */ export declare const AttachmentReference$inboundSchema: z.ZodType; /** @internal */ export type AttachmentReference$Outbound = { type?: string | undefined; id?: string | undefined; }; /** @internal */ export declare const AttachmentReference$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 AttachmentReference$ { /** @deprecated use `AttachmentReference$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AttachmentReference$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AttachmentReference$Outbound` instead. */ type Outbound = AttachmentReference$Outbound; } export declare function attachmentReferenceToJSON(attachmentReference: AttachmentReference): string; export declare function attachmentReferenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=attachmentreference.d.ts.map