import { type JSX } from "react";
import type { PillRowSpec } from "./types.js";
export declare const PillRow: import("react").ForwardRefExoticComponent<{
    readonly row: PillRowSpec;
} & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLDivElement>>;
export declare namespace PillRow {
    type Props = {
        readonly row: PillRowSpec;
    } & Omit<JSX.IntrinsicElements["div"], "ref">;
}
