import React from 'react'; import { ScoutBarProps } from 'index'; interface ScoutBarProviderProps extends Partial { values?: { scoutbarReveal?: boolean; setScoutbarReveal?: (value: boolean) => void; inputValue?: string; setInputValue?: (value: string) => void; }; } declare const ScoutBarProvider: React.FC; export default ScoutBarProvider;