import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent';
import type { HelixUser } from '@twurple/api';
/**
 * An EventSub event representing a moderator untimming out a user on a channel.
 */
export declare class EventSubChannelUntimeoutModerationEvent extends EventSubChannelBaseModerationEvent {
    readonly moderationAction = "untimeout";
    /**
     * The ID of the user being untimed out.
     */
    get userId(): string;
    /**
     * The name of the user being untimed out.
     */
    get userName(): string;
    /**
     * The display name of the user being untimed out.
     */
    get userDisplayName(): string;
    /**
     * Gets more information about the user.
     */
    getUser(): Promise<HelixUser | null>;
}
//# sourceMappingURL=EventSubChannelUntimeoutModerationEvent.d.ts.map