import { EventArgs, Type } from "./type";
import { FastItemsSourceEventAction } from "./FastItemsSourceEventAction";
/**
 * @hidden
 */
export declare class FastItemsSourceEventArgs extends EventArgs {
    static $t: Type;
    constructor(a: number, b: FastItemsSourceEventAction, c: number, d: number);
    constructor(a: number, b: number, c: string);
    constructor(a: number, ..._rest: any[]);
    private _action;
    get action(): FastItemsSourceEventAction;
    set action(a: FastItemsSourceEventAction);
    private _position;
    get position(): number;
    set position(a: number);
    private _count;
    get count(): number;
    set count(a: number);
    private _propertyName;
    get propertyName(): string;
    set propertyName(a: string);
}
