import { PersonRole } from '@equinor/fusion'; import { FC } from 'react'; export type RoleSwitchProps = { readonly role: PersonRole; readonly showSwitch: boolean; }; declare const RoleItem: FC; export default RoleItem;