import type { ButtonHTMLAttributes, ReactNode } from 'react';
/**
* Render a pill chip. Interactive when onClick is supplied (renders a button);
* otherwise a static span.
* @param props.active - selected/active visual state.
* @returns pill element.
*/
export declare function Pill({ active, className, children, onClick, ...rest }: {
active?: boolean;
className?: string | undefined;
children?: ReactNode;
} & ButtonHTMLAttributes): import("react").JSX.Element;
//# sourceMappingURL=Pill.d.ts.map