import * as React from 'react';

interface ApiKeysSearchContextType {
    inputRef: React.RefObject<HTMLInputElement | null>;
    clearSearch: () => void;
    searchValue: string;
    setSearchValue: React.Dispatch<React.SetStateAction<string>>;
}
declare const ApiKeysSearchProvider: React.FC<React.PropsWithChildren>;
declare const useApiKeysSearchContext: () => ApiKeysSearchContextType;

export { ApiKeysSearchProvider, useApiKeysSearchContext };
