import { LocalMoranResult } from './local-moran'; export type LocalGearyProps = { data: number[] | Float32Array; neighbors: number[][]; permutation: number; significanceCutoff?: number; seed?: number; }; /** * Get local Geary's C statistics. * * ## Example * ```ts * import { localGeary } from '@geoda/lisa'; * * const data = [1, 2, 3, 4, 5]; * const neighbors = [[1], [0, 2], [1, 3], [2, 4], [3]]; * * const result = await localGeary({ * data, * neighbors, * }); * * console.log(result); * ``` */ export declare function localGeary({ data, neighbors, permutation, significanceCutoff, seed, }: LocalGearyProps): Promise; export type MultivariateLocalGearyProps = { data: number[][]; neighbors: number[][]; permutation: number; significanceCutoff?: number; seed?: number; }; /** * Get multivariate local Geary's C statistics. * * ## Example * ```ts * import { multivariateLocalGeary } from '@geoda/lisa'; * * const data = [[1, 2], [3, 4], [5, 6]]; * const neighbors = [[1], [0, 2], [1, 3], [2, 4], [3]]; * * const result = await multivariateLocalGeary({ * data, * neighbors, * }); * * console.log(result); * ``` */ export declare function multivariateLocalGeary({ data, neighbors, permutation, significanceCutoff, seed, }: MultivariateLocalGearyProps): Promise;