import React from 'react';
declare type TweetType = {
url: string;
avatar: string;
children: React.ReactNode;
author: string;
username: string;
};
export declare const Tweet: ({ url, children, avatar, author, username }: TweetType) => JSX.Element;
export {};