// Type definitions for Preact Hooks - Instance // Project: https://github.com/mihar-22/preact-hooks-instance // Definitions by: Rahim Alwer declare function useInstance(value: T): T extends (...args: any) => any ? ReturnType : T; export as namespace useInstance; export default useInstance;