import { IgrRowDragStartEventArgsDetail } from "./igr-row-drag-start-event-args-detail";
import { RowDragStartEventArgs as RowDragStartEventArgs_internal } from "./RowDragStartEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Emitted when a dragging operation is starting (when the row is "picked")
 * The event is cancelable
*/
export declare class IgrRowDragStartEventArgs {
    protected createImplementation(): RowDragStartEventArgs_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): RowDragStartEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    get detail(): IgrRowDragStartEventArgsDetail;
    set detail(v: IgrRowDragStartEventArgsDetail);
}
