import React from "react";
type UserInfoProps = {
    infoType: string;
    infoValue: string | null | undefined;
};
export declare function UserInfo({ infoType, infoValue }: UserInfoProps): React.JSX.Element;
export {};
