import { Profile } from "./chat";
export declare function isStreamer(profile: Profile): boolean;
export declare function isChatManager(profile: Profile): boolean;
export declare function isChannelManager(profile: Profile): boolean;
export declare function isManager(profile: Profile): boolean;
export declare function isModerator(profile: Profile): boolean;
export declare function userRoleName(userRoleCode: string): "스트리머" | "채팅 운영자" | "채널 관리자" | "운영자" | "일반 사용자" | "알 수 없음";
export declare function donationTypeName(donationType: string): "알 수 없음" | "채팅 후원" | "영상 후원";
