import { FC } from "react";
declare type CardType = "summary" | "summary_large_image" | "app" | "player";
declare type TwitterProps = {
    title?: string;
    description?: string;
    image?: string;
    card?: CardType;
    site?: string;
};
declare const Twitter: FC<TwitterProps>;
export default Twitter;
export type { CardType, TwitterProps };
