interface Props { error: boolean; label: string; selected: boolean; handleClick: () => void; handleDelete: () => void; } export default function CustomChip(props: Props): import("react/jsx-runtime").JSX.Element; export {};