import type { Tweet } from './types';
/**
 * Returns a tweet from the Twitter syndication API.
 */
export declare function getTweet(id: string, fetchOptions?: RequestInit): Promise<Tweet | undefined>;
