import { IntlShape } from 'react-intl'; import { ISpace } from '@abyss-project/cloud'; export type SpaceScope = 'personal' | 'perso-in-org' | 'org-common' | 'project'; export declare const resolveSpaceScope: (space: Pick) => SpaceScope; export declare const resolveSpaceDisplayName: (space: Pick, intl: IntlShape, context?: { organizationName?: string; projectName?: string; userAlias?: string; }) => string;