type WidgetAppProps = {
    id?: string;
    name?: string;
    avatar?: string;
    userProfileLink?: string;
    enabledUserLogin?: boolean;
};
declare const WidgetApp: React.FC<WidgetAppProps>;
export default WidgetApp;
