import React from 'react'; declare type ChartOptionContextType = { options: Record; addOption: (name: string, id: number, config: any) => void; removeOption: (name: string, id: number) => void; }; declare const ChartOptionContext: React.Context; export default ChartOptionContext;