import React from "react"; import type { InternalChipProps } from "./ChipTypes"; export interface ChipProps extends Pick { /** * The value that gets returned on the ``'s onChange callback. */ readonly value: string; } export declare function Chip(props: ChipProps): React.JSX.Element;