import { LocalMoranResult } from './local-moran'; export type QuantileLisaProps = { k: number; quantile: number; data: number[] | Float32Array; neighbors: number[][]; permutation: number; significanceCutoff?: number; seed?: number; }; /** * Get local Quantile Lisa statistics * * ## Example * ```ts * import { quantileLisa } from '@geoda/lisa'; * * const data = [1, 2, 3, 4, 5]; * const neighbors = [[1], [0, 2], [1, 3], [2, 4], [3]]; * * const result = await quantileLisa({ * k: 3, * quantile: 0.5, * data, * neighbors, * }); * ``` * * @param k The number of classes/categories * @param quantile The quantile value * @param data The numeric values to be classified. * @param neighbors The neighbors of each observation * @param permutation The number of permutations * @param significanceCutoff The significance cutoff * @param seed The seed value * @returns LISA result */ export declare function quantileLisa({ k, quantile, data, neighbors, permutation, significanceCutoff, seed, }: QuantileLisaProps): Promise;