import { type PollDeps } from '../scheduler.js'; export interface KorbusServiceConfig { pollEnabled: boolean; databaseUrl?: string; } export declare function createKorbusService(deps: PollDeps, config: KorbusServiceConfig): { id: string; start(): Promise; stop(): Promise; }; //# sourceMappingURL=service.d.ts.map