import { ErrorUnion, TMeUrlsUnion } from '../outputs'; /** * Returns t.me URLs recently visited by a newly registered user * @param {Object} params * @param {string} [params.referrer] - Google Play referrer to identify the user * @param {Object} state * @returns {TMeUrlsUnion | ErrorUnion} */ export declare type GetRecentlyVisitedTMeUrlsMethod = (params: GetRecentlyVisitedTMeUrlsParams, state?: Record) => Promise; export interface GetRecentlyVisitedTMeUrlsParams { /** Google Play referrer to identify the user */ referrer?: string; }