import React from 'react'; import { MenuProps } from '../type'; declare type UseActivePathProps = Pick; declare const useActivePath: (props: UseActivePathProps) => [React.Key[], (path: React.Key[]) => void]; export default useActivePath;