import { Connection } from '../types/Connection';
interface Props {
connection: Connection;
onConnectionChange?: (connection: Connection) => any;
}
declare const AuthorizeButton: ({ connection, onConnectionChange }: Props) => JSX.Element;
export default AuthorizeButton;