@arteneo/forge
Version:
11 lines (10 loc) • 441 B
TypeScript
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 };