import { AsyncWrappable } from '../../types/async-iterable'; declare function asyncStartsWith(same: (a: any, b: any) => boolean, value: any): (iterable: AsyncWrappable) => Promise; declare function asyncStartsWith(same: (a: any, b: any) => boolean, value: any, iterable: AsyncWrappable): Promise; declare function asyncStartsWith(value: any, iterable: AsyncWrappable): Promise; export { asyncStartsWith };