import { FlexProps } from '@chakra-ui/react'; import * as React from 'react'; export interface AccountSwitcherButtonProps extends FlexProps { name: string; imageSrc: string; iconRight?: React.ReactNode; } export declare const AccountSwitcherButton: React.FC;