import React from 'react'; import type { DeviceKind } from '../../../model'; import type { DrawerTabKey } from '../types'; interface DrawerSidebarProps { activeKey: DrawerTabKey; activeKind: DeviceKind; showBuildIns?: boolean; getText: (key: string) => string; onChange: (key: DrawerTabKey) => void; } declare const DrawerSidebar: React.FC; export default DrawerSidebar;