import { AsyncWrappable } from '../../types/async-iterable'; declare function asyncStr(strings: AsyncWrappable): Promise; declare function asyncStr(strings: AsyncWrappable<{ toString(): string; }>): Promise; export { asyncStr };