import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FeatureFileEntity = { /** * Unique identifier for the file. */ id: string; /** * The name of the file. */ fileName: string; /** * The URL to download the file. */ url: string; /** * The MIME type of the file. */ type: string; /** * The size of the file in bytes. */ size: number; }; /** @internal */ export declare const FeatureFileEntity$inboundSchema: z.ZodType; /** @internal */ export type FeatureFileEntity$Outbound = { id: string; file_name: string; url: string; type: string; size: number; }; /** @internal */ export declare const FeatureFileEntity$outboundSchema: z.ZodType; export declare function featureFileEntityToJSON(featureFileEntity: FeatureFileEntity): string; export declare function featureFileEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=featurefileentity.d.ts.map