import React from 'react'; import cx from 'classnames'; import styles from './NavigationProfileSwitcher.module.scss'; export interface NavigationProfileSwitcherProps { /** Apply CSS class to the container. */ className?: Parameters[0]; /** Apply CSS class to the img container. */ imgWrapperClassName?: Parameters[0]; /** Name of the team profile. */ name: string; /** The function that will be called when the element is clicked. */ onClick: () => void; /** Image source for profile avatar. */ src?: string; } export declare const NavigationProfileSwitcher: React.FC; export default NavigationProfileSwitcher; export { styles }; //# sourceMappingURL=NavigationProfileSwitcher.d.ts.map