import { FC } from "../typings"; export interface AccountToggleProps { scan?: boolean; images?: { account?: string; qrcode?: string; }; } declare const AccountToggle: FC; export default AccountToggle;