/** * useGlobalLoading Hook * Manual control for global loading state */ interface UseGlobalLoadingReturn { isLoading: boolean; message?: string; show: (message?: string) => void; hide: () => void; withLoading: (asyncFn: () => Promise, message?: string) => Promise; } export declare function useGlobalLoading(): UseGlobalLoadingReturn; export {};