export interface ChipProps { /** Text on the chip */ label: string; /** Function to remove chip from chip-list on label-text*/ onDelete: (label: string) => void; } export declare const Chip: ({ label, onDelete }: ChipProps) => import("react").JSX.Element;