import { FC } from "react"; export interface UserProfileProps { name: string; subTitle: string; avatar?: string; status?: "online" | "offline" | "busy" | "away"; size?: "sm" | "md" | "lg" | "xl"; } export declare const UserProfile: FC; export default UserProfile;