/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { SearchResultTextMatchesAsResponse } from "../definitions/SearchResultTextMatchesAsResponse"; export interface LabelSearchResultItemAsResponse { id: number; node_id: string; url: string; name: string; color: string; default: boolean; description: string | null; score: number; text_matches?: SearchResultTextMatchesAsResponse; } //# sourceMappingURL=LabelSearchResultItemAsResponse.d.ts.map