import type { ScriptStore } from '../common'; /** * React hook to manage and use a controller with a script store. * * @param {ScriptStore} store - The store where the controller is managed. * @returns {T | null} The current controller or null if not available. */ export declare function useController(store: ScriptStore): T | null;