interface DownloadRendererProps {
    src: string;
    mimeType: string;
    fileExtension?: string;
    maxHeight?: number;
    showControls?: boolean;
    displayName?: string;
    description?: string;
    fileSize?: number;
}
/**
 * Download-only renderer for files that can't be displayed inline
 * (Archives, executables, documents, etc.)
 */
export declare function DownloadRenderer({ src, mimeType, fileExtension, maxHeight, showControls, displayName, description, fileSize }: DownloadRendererProps): import("react/jsx-runtime").JSX.Element;
export default DownloadRenderer;
//# sourceMappingURL=DownloadRenderer.d.ts.map