import React from 'react'; import type { HighlightProps as HighlightComponentProps } from '../Highlight'; interface SpotlightControllerProps { config?: { shortcut?: string | string[] | null; actions?: any[]; alwaysMount?: boolean; highlightQuery?: boolean | HighlightComponentProps['highlight']; limit?: number; placeholder?: string; }; } export declare const SpotlightController: React.NamedExoticComponent; export {};