import type { ActionFieldDef } from './types'; export interface UploadFieldProps { field: ActionFieldDef; value: any; onChange: (v: any) => void; } /** * Pulls the stored file url/path out of an upload response envelope, tolerating * the common key shapes a host might return. Pure — exported for tests. */ export declare function extractUploadedValue(payload: any): string; /** Short, human display name for an already-stored file value (a url/path). */ export declare function uploadedDisplayName(value: unknown): string; export declare function UploadField({ field, value, onChange }: UploadFieldProps): import("react").JSX.Element; //# sourceMappingURL=upload-field.d.ts.map