export type SpaceSelection = { mode: 'single'; spaceId: string; } | { mode: 'many'; spaceIds: readonly [string, ...string[]]; } | { mode: 'all'; }; export declare const normalizeSpaceSelection: (space: string | undefined, spaces: readonly [string, ...string[]] | "all" | undefined) => SpaceSelection; //# sourceMappingURL=space-selection.d.ts.map