import { Dispatch, PropsWithChildren, SetStateAction } from 'react';
export interface PillManagerControls {
    activeRow: string | null;
    setActiveRow: Dispatch<SetStateAction<string | null>>;
    activePill: string | null;
    setActivePill: Dispatch<SetStateAction<string | null>>;
}
export declare function PillManagerControlsProvider(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
export declare const usePillControls: () => PillManagerControls;
