import { ChzzkModuleOptionDto } from "../dtos/chzzk-connector-option.dto";
export declare class UserStatus {
    hasProfile: boolean;
    userIdHash: string;
    nickname: string;
    profileImageUrl: string;
    penalties: string[];
    officialNotiAgree: boolean;
    officialNotiAgreeUpdatedDate: string;
    verifiedMark: boolean;
    loggedIn: boolean;
}
export declare class ChzzkUserRepository {
    status(option: ChzzkModuleOptionDto): Promise<UserStatus>;
}
