import { type TemplateResult } from "lit"; import { GlobalStyle } from "../../internal/global-style.js"; /** * {@linkcode Chip} renders a chip. * * @slot - Chip content. * @category display */ declare class Chip extends GlobalStyle { /** * The position of the chip relative to its parent element. */ position: "top-left" | "top-right" | "bottom-left" | "bottom-right"; value: number; /** * If `true`, render a dot chip. */ dot: boolean; /** * The maximum value that can be displayed in the chip * Values greater than this will be displayed as `max+` by default. */ max: number; formatValue(value: number): string; render(): TemplateResult<1>; } export default Chip; export { Chip };