import * as React from 'react'; interface ApiKeysSearchContextType { inputRef: React.RefObject; clearSearch: () => void; searchValue: string; setSearchValue: React.Dispatch>; } declare const ApiKeysSearchProvider: React.FC; declare const useApiKeysSearchContext: () => ApiKeysSearchContextType; export { ApiKeysSearchProvider, useApiKeysSearchContext };