/// import { StyleProp } from "@front10/base-elements"; import { FacebookCardProps } from "./FacebookCard"; interface Props { profilePicture?: string; profileUrl?: string; username?: string; objectFit: FacebookCardProps["imageCover"]; isLoading?: boolean; userVerified?: boolean; date?: string; sx?: StyleProp; hasRightIcon?: boolean; cardWidth?: number; } export declare function FacebookHeader(props: Props): JSX.Element; export {};