import { z } from 'zod'; export declare const attachmentSchema: z.ZodObject<{ type: z.ZodLiteral<"attachments">; id: z.ZodUUID; attributes: z.ZodObject<{ createdAt: z.ZodNullable; fileURL: z.ZodNullable; fileURLExpiresAt: z.ZodISODateTime; fileExtension: z.ZodNullable; fileContentType: z.ZodNullable; }, z.core.$strip>; relationships: z.ZodObject<{ transaction: z.ZodObject<{ data: z.ZodObject<{ type: z.ZodLiteral<"transactions">; id: z.ZodUUID; }, z.core.$strip>; links: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>; links: z.ZodOptional>; }, z.core.$strip>; export type Attachment = z.infer;