import type { Observable } from 'rxjs/Observable'; import { type JQLFieldResponse } from '../common/types'; /** * Returns an Observable of the first field matching the provided string, or an empty Observable if no matching field * could be found. */ declare const findField$: (jqlFields$: Observable, field: string) => Observable; export default findField$;