import { FC } from 'react'; import { Organization, Workspace, Project } from './contextSwitcher/types'; export type { Organization, Workspace, Project } from './contextSwitcher/types'; export interface ContextSwitcherProps { organizations: Organization[]; workspaces: Workspace[]; projects: Project[]; currentOrganizationId?: string; currentWorkspaceId?: string; currentProjectId?: string; onOrganizationChange?: (org: Organization) => void; onWorkspaceChange?: (workspace: Workspace) => void; onProjectChange?: (project: Project) => void; /** Show as icon only (for small screens) */ compact?: boolean; } export declare const ContextSwitcher: FC; //# sourceMappingURL=ContextSwitcher.d.ts.map