import * as React from 'react';
import { FileAttachmentConfig } from './useFileAttachment';
type Props = {
    attachmentConfig: FileAttachmentConfig;
    isTyping?: boolean;
};
declare const FileAttachmentBlock: React.FC<Props>;
export default FileAttachmentBlock;
