import { Feature } from "geojson"; /** * Runs smoke test for a preprocessor function taking polygon input * Runs preprocessor function for all example polygon sketches */ export declare const polygonPreprocessorSmokeTest: (preprocessorFunc: (feature: Feature) => Promise, preprocessorName: string, options?: { /** Partial name of example polygon sketch to load */ partialName?: string | undefined; /** timeout for test run in milliseconds, defaults to 10000 */ timeout?: number; debug?: boolean; }) => void;