import "isomorphic-fetch"; import * as React from "react"; declare type Props = { readonly togglePanel: () => void; }; declare const AccountButton: ({ togglePanel }: Props) => React.ReactElement; export default AccountButton;