export declare function promiseOrCallback<T = void>(action: () => Promise<T>, cb: (err?: Error, result?: T) => void): Promise<T>;
