import type { PillRowSpec } from "./types"; export interface PillRowContext { readonly expanded: boolean; readonly expandToggle: (s?: boolean) => void; readonly row: PillRowSpec; } export declare const PillRowProvider: import("react").Provider; export declare const usePillRow: () => PillRowContext;