import type { FC } from "react"; import type { IFilesUploader, IOnFilesChangeArg, IFilesUploaderRef } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент загрузчика файлов * @returns {ReactElement} * */ declare const FilesUploader: FC; export type { IFilesUploader, IFilesUploaderRef, IOnFilesChangeArg }; export { FilesUploader };