import { FC, PropsWithChildren } from 'react'; type InitialState = { [key: string]: boolean; }; type Dispatch = React.Dispatch; export declare const useExpandsStore: () => InitialState; export declare function useExpands(): [{ [x: string]: boolean; }, import("react").Dispatch]; export declare function useExpandsDispatch(): Dispatch; interface ExpandsProps { initial: InitialState; dispatch: Dispatch; } export declare const Expands: FC>; export {};