import React from "react"; import type { WarpPill } from "./pill.js"; /** * Pill is a type of button that is often used as a filter, but can also be used as a rounded button for overlays, etc. * * [Warp component reference](https://warp-ds.github.io/docs/components/pill/frameworks/elements) */ export declare const Pill: React.ForwardRefExoticComponent, "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "onclick" | "onclose" | "render" | "renderOptions" | "onClick" | "canClose" | "onClose" | "suggestion" | "openSrLabel" | "openAriaLabel" | "closeSrLabel" | "closeAriaLabel"> & { onClick?: ((e: CustomEvent) => void) | undefined; onclick?: ((e: CustomEvent) => void) | undefined; onClose?: ((e: CustomEvent) => void) | undefined; onclose?: ((e: CustomEvent) => void) | undefined; } & Partial> & React.RefAttributes, "ref">, "can-close" | "open-sr-label" | "open-aria-label" | "close-sr-label" | "close-aria-label"> & { canClose?: boolean; openSrLabel?: string; openAriaLabel?: string; closeSrLabel?: string; closeAriaLabel?: string; } & React.RefAttributes>;