interface GoogleAPIProps {
    apiKey: string;
    libraryParam: string;
    languageParam: string;
    regionParam: string;
}
declare const useGoogleAPI: ({ apiKey, libraryParam, languageParam, regionParam, }: GoogleAPIProps) => boolean;
export default useGoogleAPI;
