/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CreateSavedSearchPayload { name: string; description?: string; query: string; owner: { id?: string; username?: string; }; /** * Teams that the alert will be routed to send notifications */ teams?: Array<{ id?: string; name?: string; }>; } //# sourceMappingURL=CreateSavedSearchPayload.d.ts.map