import { Options } from './types';
/**
 * Function for creating an asynchronous chain
 *
 * @param obj Promise or any data (will be wrapped in a promise)
 * @param options Options for enabling debug and strict mode
 * @returns new Proxy object
 */
declare function async<T>(obj?: T | Promise<T>, options?: Options): any;
export default async;
