export interface ChipLabel { color: string; label: string; } export interface Props { chips: ChipLabel[]; } declare const ChipsList: ({ chips }: Props) => import("react/jsx-runtime").JSX.Element; export default ChipsList;