/** * WorkspaceHeader Smart Component * Navigation and info header for workspace context */ import type { User, Workspace } from '../../types'; import React from 'react'; export interface WorkspaceHeaderProps { workspace: Workspace; currentUser: User; memberCount?: number; onInvite?: (email: string) => Promise; onNavigate?: (path: string) => void; onSettings?: () => void; onError?: (error: Error) => void; } export declare const WorkspaceHeader: React.ForwardRefExoticComponent>; //# sourceMappingURL=WorkspaceHeader.d.ts.map