/** * The generic point options for all series. */ export interface PointOptionsObject { /** * The name of the point as shown in the legend, tooltip, * dataLabels, etc. */ name?: (number | string); /** * The x value of the point. For datetime axes, the * X value is the timestamp in milliseconds since 1970. */ x?: number; /** * The y value of the point. */ y?: (number | null); /** * 允许某个 point 关闭 dataLabels * * Default to undefined */ dataLabels?: boolean; } export declare function createHighPointOptions(options: PointOptionsObject): Highcharts.PointOptionsObject; export declare function isPointOptionsObject(data: number | Array<(string | number | null)> | PointOptionsObject | null): data is PointOptionsObject;