import type { JQLQueryWithUnknownUsers } from './jQLQueryWithUnknownUsers';

/** The converted JQL queries. */
export interface ConvertedJQLQueries {
  /** The list of converted query strings with account IDs in place of user identifiers. */
  queryStrings?: string[];
  /** List of queries containing user information that could not be mapped to an existing user */
  queriesWithUnknownUsers?: JQLQueryWithUnknownUsers[];
}
