import React from "react";
export type SidebarProps = {
    isFocused: boolean;
    isLoading: boolean;
    error?: string | null;
    types: string[];
    selectedType: string | null;
    setSelectedType: (value: string) => void;
};
export declare const SIDEBAR_WIDTH = 30;
export declare const Sidebar: React.FC<SidebarProps>;
