/** * Returns the url to the Sentry project stream. * * Example: https://org-slug.sentry.io/issues/?project=1234567 */ export declare function getIssueStreamUrl({ url, orgSlug, projectId, }: { url: string; orgSlug: string; projectId: string; }): string;