export declare const ChipContextProvider: import("react").Provider<{
    activeChip: string | null;
    setActiveChip: (s: string | null) => void;
}>;
export declare const useChipContext: () => {
    activeChip: string | null;
    setActiveChip: (s: string | null) => void;
};
