import { FC } from "react";
declare type ObjectType = "music.song" | "music.album" | "music.playlist" | "music.radio_station" | "video.movie" | "video.episode" | "video.tv_show" | "video.other" | "article" | "book" | "profile" | "website";
declare type FacebookProps = {
    url?: string;
    title?: string;
    description?: string;
    image?: string;
    type?: ObjectType;
};
declare const Facebook: FC<FacebookProps>;
export default Facebook;
export type { FacebookProps, ObjectType };
