import type { NavTabItem } from './NavTabList'; import './DashboardList.scss'; export interface DashboardListProps { onSelect: (tab: NavTabItem) => void; tabs?: readonly NavTabItem[]; } /** * Display a search field and a list of dashboard tabs * @param props The tabs and handlers to use for this list * @returns A JSX element for the list of dashboard tabs, along with search */ export declare function DashboardList(props: DashboardListProps): JSX.Element; export default DashboardList; //# sourceMappingURL=DashboardList.d.ts.map