/// import { Attachment } from 'botframework-directlinejs'; import { IDoCardAction } from './Chat'; import { FormatState } from './Store'; export interface QueryParams { [propName: string]: string; } export declare const queryParams: (src: string) => QueryParams; export declare const AttachmentView: (props: { attachment: Attachment; disabled: boolean; format: FormatState; onCardAction: IDoCardAction; onImageLoad: () => void; }) => JSX.Element;