import { ComponentPropsWithRef } from 'react'; import { LabelColor } from '../shared/types'; export type LabelProps = ComponentPropsWithRef<'span'> & { color: LabelColor; }; /** - Colors correspond to our label color [design tokens](https://slab.cocam.co/foundations/search-design-tokens). (Label colors do not have dark mode values yet.) - `Label` is not interactive: Wrap labels with a button to make them clickable. */ export declare function Label({ color, ...props }: LabelProps): import("react/jsx-runtime").JSX.Element; export default Label;