/// <reference types="react" />
import { ActionIconSize, DivProps } from '@lobehub/ui';
export interface DownloadButtonProps extends DivProps {
    className?: string;
    onClick?: () => void;
    size?: ActionIconSize;
}
declare const DownloadButton: import("react").NamedExoticComponent<DownloadButtonProps>;
export default DownloadButton;
