/**
 * Naive flood implementation of a distance field computation algorithm
 * @param {Sampler2D} source
 * @param {Sampler2D} destination
 * @param {number} emptyValue
 *
 * @author Alex Goldring
 * @copyright Company Named Limited (c) 2025
 */
export function computeSignedDistanceField_NaiveFlood(source: Sampler2D, destination: Sampler2D, emptyValue: number): void;
//# sourceMappingURL=computeSignedDistanceField_NaiveFlood.d.ts.map