import React from 'react'; import { ISelect } from '../../types/field'; export interface IChipPlainList { /** Mandatory selection of options, most likely passed from type options */ options: ISelect[]; /** Mandatory selection ids */ optionIds: string[]; /** Optional item style overrride */ itemStyle?: object; /** Size defaults to small */ itemSize?: 'small' | 'medium'; /** Optional styles */ style?: object; } export declare const ChipPlainList: React.FC;