/** * useHasActiveFileOperations Hook * * Simple hook to check if any file operations (upload/download/generate) are active. * Useful for disabling UI elements or showing global loading indicators. * * @example * ```typescript * const hasActiveOps = useHasActiveFileOperations(); * * return ( * * ); * ``` */ /** * Check if any file operations are currently active. * * @returns true if any upload, download, or generate operation is in progress */ export declare function useHasActiveFileOperations(): boolean; //# sourceMappingURL=useHasActiveFileOperations.d.ts.map