import { type JSX } from "react";
import { type SlotComponent } from "../../hooks/use-slot/index.js";
import type { PillRowSpec, PillState } from "./types.js";
export declare const PillLabel: import("react").NamedExoticComponent<Omit<PillLabel.Props, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
export declare namespace PillLabel {
    type Props = Omit<JSX.IntrinsicElements["div"], "children"> & {
        row: PillRowSpec;
        render?: SlotComponent<PillState>;
    };
}
