import * as React from "react";
export interface BorrowButtonProps extends React.HTMLProps<any> {
    borrow: () => Promise<any>;
}
export default class BorrowButton extends React.Component<BorrowButtonProps, any> {
    render(): JSX.Element;
}
