import * as React from "react"; import { UploadProps } from "antd/lib/upload"; export declare function StageFiles({ name, url, children, onChange, action, ...rest }: React.PropsWithChildren<{ name: string; url: string; } & UploadProps>): JSX.Element; export declare function Files({ name, disableDelete, fileUrl, }: { name: string; disableDelete?: boolean; fileUrl: (id: string) => string; }): JSX.Element; //# sourceMappingURL=upload-files.d.ts.map