import { StockChangedEventArgs as StockChangedEventArgs_internal } from "./StockChangedEventArgs";
/**
 * Represents event arguments for FDC3 MessageRecived
*/
export declare class IgxStockChangedEventArgs {
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): StockChangedEventArgs_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets array of added stock symbols
    */
    get addedSymbols(): string[];
    set addedSymbols(v: string[]);
    static ngAcceptInputType_addedSymbols: string[] | string;
    /**
     * Gets array of removed stock symbols
    */
    get removedSymbols(): string[];
    set removedSymbols(v: string[]);
    static ngAcceptInputType_removedSymbols: string[] | string;
}
