export interface Tweet {
    id: string;
    text: string;
    username: string;
    created_at: string | null;
    timestamp: number | null;
}
