import { IgrRowSelectionEventArgsDetail } from "./igr-row-selection-event-args-detail";
import { RowSelectionEventArgs as RowSelectionEventArgs_internal } from "./RowSelectionEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * The event arguments when the selection state of a row is being changed
 * The event is cancelable
*/
export declare class IgrRowSelectionEventArgs {
    protected createImplementation(): RowSelectionEventArgs_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): RowSelectionEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    get detail(): IgrRowSelectionEventArgsDetail;
    set detail(v: IgrRowSelectionEventArgsDetail);
}
