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