import React from 'react'; /** @public */ export type Tool = { label: string; url: string; icon: React.ReactNode; }; type ToolkitContextValue = { tools: Tool[]; }; declare const Context: React.Context; export declare const ContextProvider: (props: { children: JSX.Element; tools: Tool[]; }) => React.JSX.Element; export declare const useToolkit: () => ToolkitContextValue | undefined; export default Context;