import { CommonGoogleTrendsApiParameters } from '../assertions/defineCommonGoogleTrendsApiParametersValue';
import { AgentOptions, GoogleTrendsApiTopic } from '../common';
/**
 * provides suggestions of search terms and topics which you can get trends data on
 *
 * for example:
 * - https://trends.google.com/trends/api/autocomplete/mattress?hl=en-US&tz=240
 */
export declare const getAutocompleteSuggestions: ({ keyword, hl, tz }: {
    keyword: string;
} & CommonGoogleTrendsApiParameters, agentOptions?: AgentOptions) => Promise<GoogleTrendsApiTopic[]>;
