import type { MValue, Properties, RGBA, VectorPoint } from '../../index.js'; export * from './average.js'; export * from './bilinear.js'; export * from './idw.js'; export * from './kriging.js'; export * from './lanczos.js'; export * from './nearest.js'; /** Interpolation method */ export type InterpolationMethod = 'average' | 'nearest' | 'idw' | 'lanczos'; /** * Get the interpolation function based on the method type. * Options are: * - average * - nearest * - idw * - lanczos [default] * @param method - interpolation method as a string * @returns - interpolation function */ export declare function getInterpolation(method: InterpolationMethod): InterpolationFunction; /** * Get the interpolation function based on the method type. * Options are: * - average * - nearest * - idw * - lanczos [default] * @param method - interpolation method as a string * @returns - interpolation function */ export declare function getRGBAInterpolation(method: InterpolationMethod): RGBAInterpolationFunction; /** Function to get the value of a point */ export type GetInterpolateValue = (point: VectorPoint) => number; /** The standard interpolation function */ export type InterpolationFunction = (point: VectorPoint, refData: VectorPoint[], getValue: GetInterpolateValue) => number; /** The standard RGBA interpolation function */ export type RGBAInterpolationFunction = (point: VectorPoint, refData: VectorPoint[]) => RGBA; /** * Default function to get the value of a point * @param point - vector point to pull data from * @returns - the z value */ export declare function defaultGetInterpolateCurrentValue(point: VectorPoint): number; //# sourceMappingURL=index.d.ts.map