interface DataType { x: number[]; y: number[]; } /** * Calculate the max and min value of the data * @param data - The data to calculate * @param data.x - The x data * @param data.y - The y data * @returns min x and y point, max power value and power series */ export declare function getInfo({ x, y }: DataType): { x0: { x: number; y: number; }; y0: { x: number; y: number; }; max: { x: number; y: number; }; power: DataType; }; export {}; //# sourceMappingURL=utils.d.ts.map