import { StockChangedEventArgs as StockChangedEventArgs_internal } from "./StockChangedEventArgs";
import { ContentChildrenManager } from "./ContentChildrenManager";
/**
 * Represents event arguments for FDC3 MessageRecived
*/
export declare class IgrStockChangedEventArgs {
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): StockChangedEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets array of added stock symbols
    */
    get addedSymbols(): string[];
    set addedSymbols(v: string[]);
    /**
     * Gets array of removed stock symbols
    */
    get removedSymbols(): string[];
    set removedSymbols(v: string[]);
}
