import type { GraphOptions } from '@antv/g6'; import type { CallableValue } from '../types'; /** * Hook for graph options state management. * @returns [options, updateOptions] * @public */ export declare const useGraphOptions: () => readonly [any, (options: CallableValue) => void];