import { SetStateAction } from 'react';
interface IProps {
    allCategories: string[];
    setActiveCategory: (value: SetStateAction<string>) => void;
    activeCategory: string;
}
declare const useInitialActiveCategory: ({ activeCategory, allCategories, setActiveCategory, }: IProps) => void;
export default useInitialActiveCategory;
