import { type PillProps } from "@salt-ds/core"; import { type MutableRefObject, type SyntheticEvent } from "react"; export type InputPillProps = PillProps & { /** * A ref object holds pills index map to width. */ pillsRef: MutableRefObject>; /** * Index of the pill within Input. */ index: number; /** * Whether the pill is the last visible one within Input. */ lastVisible?: boolean; /** * Pill label. */ label?: string; /** * Whether the pill is highlighted. */ highlighted?: boolean; /** * Callback when pill is deleted. */ onClose?: (event: SyntheticEvent, index: number) => void; }; export declare const InputPill: import("react").MemoExoticComponent<(props: InputPillProps) => import("react/jsx-runtime").JSX.Element>;