import type { BuildGuide } from './types.js';
import type { VectorFeatures } from '../../index.js';
export * from './types.js';
/**
 * Build vector tiles give a guide on what sources to parse data from and how to store it
 * @param buildGuide - the user defined guide on building the vector tiles
 */
export declare function toTiles(buildGuide: BuildGuide): Promise<void>;
/** A result of a feature iterator */
export interface FeatureIterateResult {
    sourceName: string;
    feature: VectorFeatures;
}
//# sourceMappingURL=index.d.ts.map