import { Base, Type } from "./type";
/**
 * @hidden
 */
export declare class StockChangedEventArgs extends Base {
    static $t: Type;
    constructor(a: string[], b: string[]);
    private _addedSymbols;
    get addedSymbols(): string[];
    set addedSymbols(a: string[]);
    private _removedSymbols;
    get removedSymbols(): string[];
    set removedSymbols(a: string[]);
}
