import { WorkspaceMembership } from '../services/vendor.atlassian.workspaces.types.js'; /** * Get the default workspace slug * * This function follows this priority: * 1. Use cached value if available * 2. Check BITBUCKET_DEFAULT_WORKSPACE environment variable * 3. Fetch from API and use the first workspace in the list * * @returns {Promise} The default workspace slug or null if not available */ export declare function getDefaultWorkspace(): Promise; /** * Get list of workspaces from API or cache * * @returns {Promise} Array of workspace membership objects */ export declare function getWorkspaces(): Promise;