import { GridDataCommittedEventArgs as GridDataCommittedEventArgs_internal } from "./GridDataCommittedEventArgs";
import { DataSourceAggregatedResult } from "igniteui-webcomponents-core";
/**
 * Event arguments for the DataCommitted event.
*/
export declare class IgcGridDataCommittedEventArgs {
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): GridDataCommittedEventArgs_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets the ID for this commit.
    */
    get commitID(): number;
    set commitID(v: number);
    /**
     * Gets a list of the changes that were committed.
    */
    get changes(): DataSourceAggregatedResult[];
    set changes(v: DataSourceAggregatedResult[]);
}
