import { TricklingEvent } from './TricklingEvent.js';
import type { Widget } from '../widgets/Widget.js';
/** A {@link TricklingEvent} which can be targeted. */
export declare abstract class TargetableTricklingEvent extends TricklingEvent {
    readonly target: Widget | null;
    constructor(target: Widget | null, reversed?: boolean);
}
