/// import { StyleProp } from "@front10/base-elements"; import { InstagramCardProps } from "./InstagramCard"; interface Props { profilePicture?: string; profileUrl?: string; username?: string; objectFit: InstagramCardProps["imageCover"]; isLoading?: boolean; userVerified?: boolean; date?: string; showBrandIcon?: boolean; variant?: "inline" | "block"; sx?: StyleProp; } export declare function InstagramHeader(props: Props): JSX.Element; export {};