import { type PropsWithChildren, type ReactNode } from 'react'; export type FileUploaderContainerProps = { /** * Класс для контейнера */ className?: string; label?: string; isError?: boolean; helperText?: ReactNode; } & PropsWithChildren; export declare const FileUploaderContainer: ({ className, label, children, isError, helperText, }: FileUploaderContainerProps) => JSX.Element;