import './DownloadList.scss';
export interface DownloadItem {
    fileName: string;
    path: string;
}
export interface DownloadListProps {
    list: DownloadItem[];
    /** Section heading (e.g. a localized "Read More"). */
    title: string;
    /** Builds the per-item download link accessible name from its file name. */
    downloadLabel: (fileName: string) => string;
}
declare function DownloadList({ list, title, downloadLabel }: DownloadListProps): import("react").JSX.Element;
export default DownloadList;
//# sourceMappingURL=DownloadList.d.ts.map