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