import { FC, PropsWithChildren } from 'react'; type InitialState = Record; type Dispatch = React.Dispatch; export declare const useShowToolsStore: () => InitialState; export declare function useShowTools(): [{ [x: string]: boolean; }, import("react").Dispatch]; export declare function useShowToolsDispatch(): Dispatch; interface ShowToolsProps { initial: InitialState; dispatch: Dispatch; } export declare const ShowTools: FC>; export {};