import type { HandlerConfig, RunnerTrigger } from '../../typings'; import type Datastore from '../Datastore'; import Aggregator from '../aggregator/Aggregator'; export * from './utils'; export declare function getProjectionConfiguration(url: URL, datastores: Map): Promise; export declare function getDestinationDatastore(url: URL, datastores: Map, configuration: any): Datastore; export declare function initDestinationModel(url: URL, datastores: Map, configuration: any): Promise; export declare function getTriggers(url: URL, datastores: Map, aggregator: Aggregator, configuration: any): Promise; export declare const main: (url: URL, services?: import("../../typings").Services) => Promise; export declare const syncPostgreSQL: (url: URL, services?: import("../../typings").Services) => Promise;