/// import { Asset } from './dummy-assets'; export interface FooterPaneProps { assets: Asset[]; onRequestClose: () => void; search: string; } export declare function FooterPane({ assets, onRequestClose, search }: FooterPaneProps): JSX.Element; export interface AssetButtonProps { asset: Asset; onRequestClose: () => void; } export declare function AssetButton({ asset, onRequestClose }: AssetButtonProps): JSX.Element;