import React from "react"; interface SearchViewProps { selected: Set; onToggle: (name: string) => void; onConfirm: () => void; onBack: () => void; /** A query starting with "/" is a slash command, run on Enter instead of searched. */ onCommand?: (line: string) => void; } export declare function SearchView({ selected, onToggle, onConfirm, onBack, onCommand, }: SearchViewProps): React.JSX.Element; export {};