import './TableSelectedOptionsList.css'; import React from 'react'; export type GetTagLabel = (id: string, name: string, filterValue?: unknown) => string; type Props = { values: Array<{ id: string; name: string; value?: unknown; }>; getTagLabel?: GetTagLabel; onRemove: (id: string) => void; onReset: () => void; }; export declare const TableSelectedOptionsList: React.FC; export {};