import React from "react";
import { ButtonProps } from "../../components/Common/Button";
import EndpointType from "../../definitions/EndpointType";
interface ButtonDownloadInterface {
    endpoint: EndpointType;
}
type ButtonDownloadProps = ButtonDownloadInterface & ButtonProps;
declare const ButtonDownload: ({ endpoint, ...props }: ButtonDownloadProps) => React.JSX.Element;
export default ButtonDownload;
export { ButtonDownloadProps };
