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