/// import { FabreactorAction, FabreactorView } from '../../utils'; import './CommandBar.css'; interface IFabreactorCommandBarProps { currentViewKeys?: string[] | null; views: FabreactorView[][]; actions?: FabreactorAction[] | null; onViewChange?: (view: FabreactorView) => void; onSearch?: (query: string) => void; onSearchCleared?: () => void; onOffsetChanged?: (offsetChange: number) => void; searchPlaceholder?: string; listImage?: string | null; compact?: boolean; preview?: boolean; secondaryListImage?: string; secondaryListImageLink?: string; secondaryListImageTooltip?: string; } export declare const FabreactorCommandBar: (props: IFabreactorCommandBarProps) => JSX.Element; export {};