import { z } from "zod"; import { BasePropertySchema, TPropertyValue } from "./common"; import { PropertyType } from "./property-type"; export declare class ApFile { filename: string; data: Buffer; extension?: string | undefined; constructor(filename: string, data: Buffer, extension?: string | undefined); get base64(): string; } export declare const FileProperty: z.ZodObject<{ type: z.ZodLiteral; required: z.ZodBoolean; defaultValue: z.ZodOptional; displayName: z.ZodString; description: z.ZodOptional; }, z.core.$strip>; export type FileProperty = BasePropertySchema & TPropertyValue; //# sourceMappingURL=file-property.d.ts.map