import { FC, HTMLAttributes } from 'react'; import type { PropsWithChildren } from 'react'; import { SortProps } from './components/Sort'; import './index.less'; export interface SearchBarProps extends HTMLAttributes { title: string; onAddWorkspace: () => void; onSort: SortProps['onChange']; } interface WorkspaceListProps extends HTMLAttributes { } declare const WorkspacesList: FC>; export default WorkspacesList;