import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent';
import { type EventSubChannelModerationAction } from './EventSubChannelModerationEvent.external';
import { type HelixUser } from '@twurple/api';
/**
 * An EventSub event representing a moderator resolving an unban request on a channel.
 */
export declare class EventSubChannelUnbanRequestModerationEvent extends EventSubChannelBaseModerationEvent {
    readonly moderationAction: Extract<EventSubChannelModerationAction, 'approve_unban_request' | 'deny_unban_request'>;
    /**
     * Whether the unban request was approved or denied.
     */
    get isApproved(): boolean;
    /**
     * The ID of the banned user.
     */
    get userId(): string;
    /**
     * The name of the banned user.
     */
    get userName(): string;
    /**
     * The display name of the banned user.
     */
    get userDisplayName(): string;
    /**
     * Gets more information about the user.
     */
    getUser(): Promise<HelixUser | null>;
    /**
     * The message included by the moderator explaining their approval or denial.
     */
    get moderatorMessage(): string;
}
//# sourceMappingURL=EventSubChannelUnbanRequestModerationEvent.d.ts.map