import { z } from 'zod'; export declare const FilePropertiesSchema: z.ZodObject<{ /** * The extension of the file. */ extension: z.ZodFunction, z.ZodString>; /** * The file base name. */ basename: z.ZodFunction, z.ZodString>; /** * The file path. */ path: z.ZodFunction, z.ZodString>; /** * The file name without the extension. */ name: z.ZodFunction, z.ZodString>; }, "strip", z.ZodTypeAny, { name: (...args: unknown[]) => string; path: (...args: unknown[]) => string; extension: (...args: unknown[]) => string; basename: (...args: unknown[]) => string; }, { name: (...args: unknown[]) => string; path: (...args: unknown[]) => string; extension: (...args: unknown[]) => string; basename: (...args: unknown[]) => string; }>; export type FileProperties = z.infer;