import { FC, RefObject } from 'react'; import { Workspace } from './types'; export declare const WorkspaceList: FC<{ filteredWorkspaces: Workspace[]; searchedWorkspaces: Workspace[]; currentWorkspaceId?: string; searchQuery: string; onSearchChange: (value: string) => void; onSelect: (workspace: Workspace) => void; searchInputRef: RefObject; }>; //# sourceMappingURL=WorkspaceList.d.ts.map