import { CommonComponentProps } from '../../types'; import { ChatAsset } from './constants'; export interface AssetsSectionProps extends Omit { assets: ChatAsset[]; onRemove?: (index: number) => void; } export declare const AssetsSection: React.FC;