import * as React from 'react'; import { ChipType } from './models/chipType'; import { ChipAlignment } from './rectangularCell'; import { StorytellerListViewCellType } from '../../models/storytellerListViewCellType'; interface IChipProps { cellType: StorytellerListViewCellType; className?: string; chipType: ChipType | null; alignment?: ChipAlignment; inRow?: boolean; } export declare const Chip: React.FunctionComponent; export {};