import { Logger } from '../Logger'; export interface Options { apiKey: string; notifyEndpoint?: string; sessionsEndpoint?: string; } export declare function configure(projectRoot: string, options: Options, logger: Logger): Promise;