import type { Livescore } from '../api';
/**
 * Fetches the current livescore from the API.
 * This includes upcoming matches in the near time, live matches and recent matches from the last hours.
 *
 * @returns A promise that resolves with an array of the current livescores.
 */
export declare const getLivescore: () => Promise<Livescore[]>;
