import type { FilePreview } from '@/widget/types'; type FilePreviewBarProps = { previews: FilePreview[]; isFullPage?: boolean; chatContainerWidth?: number; inputDisabled: boolean; onDelete: (item: FilePreview) => void; }; /** * The row of pending attachments, drawn inside the composer above the input — Core's * `selectedFilesRow`, which sits first inside its own composer container. * * Core scrolls this row sideways rather than wrapping it, so a handful of files never grows the * composer downwards; its children keep their width (`flexShrink: 0`) and the overflow scrolls. * There is no separator: inside the composer's own border, one would read as a second edge. */ export declare const FilePreviewBar: (props: FilePreviewBarProps) => import("solid-js").JSX.Element; export {};