import { PaletteNames } from '../../theme/palette'; import { SvgIcon } from '../Icon'; export type SharingStatusColor = Extract; export interface SharingStatusProps { /** Color choices represent variants of sharingstatus */ color?: SharingStatusColor; /** Adds custom classes to the element. */ className?: string; /** Icon to be displayed next to the sharingstatus */ icon: SvgIcon; /** Sets the data-testid attribute. */ testId?: string; /** Sets the text placed to the right of the sharingstatus */ children: string; /** turn on and off word wrapping */ wrapText?: boolean; } declare const SharingStatus: React.FC; export default SharingStatus;