import './Attachment.css'; import React from 'react'; import { IconProps } from '../../icons/Icon/Icon'; declare type Props = { fileExtension?: string; loading?: boolean; fileName?: string; fileDescription?: string; loadingProgress?: number; errorText?: string; loadingText?: string; onButtonClick?: React.EventHandler; buttonIcon?: React.FC; buttonTitle?: string; withAction?: boolean; className?: string; children?: never; }; declare const cnAttachment: import("@bem-react/classname").ClassNameFormatter; declare const Attachment: import("../../utils/types/PropsWithAsAttributes").ComponentWithAs; export { Attachment, cnAttachment };