export declare const NavigationTarget: { /** * The view page for pages, blogs and custom content. Takes a contentId to identify the content. */ readonly ContentView: "contentView"; /** * The edit page for pages, blogs and custom content. Takes a contentId to identify the content. */ readonly ContentEdit: "contentEdit"; /** * The list/collector page for pages, blogs and custom content contained in a space. Takes a spaceKey and a contentType to identify the content type for pages and blogs. Takes a moduleKey for custom content. */ readonly ContentList: "contentList"; /** * The space view page. Takes a spaceKey to identify the space. */ readonly SpaceView: "spaceView"; /** * The page within a specific module. Takes a moduleKey to identify the correct module. */ readonly Module: "module"; /** * The profile page for a specific user. Takes an accountId to identify the user. */ readonly UserProfile: "userProfile"; /** * A dashboard in Jira. Takes a dashboardId to identify the dashboard. */ readonly Dashboard: "dashboard"; /** * An issue in Jira. Takes an issueKey to identify the issue. */ readonly Issue: "issue"; /** * The project settings details of a Jira project. Takes a projectKey to identify the project. Only accessible to administrators. */ readonly ProjectSettingsDetails: "projectSettingsDetails"; }; //# sourceMappingURL=targets.d.ts.map