export declare function initCompanion({ path, express, providerOptions, ...restProps }: {
    path: string;
    express: Function;
    providerOptions?: Object;
}): {
    app: import("express").Express;
    emitter: any;
};
