import { GridKeydownTargetType } from "./GridKeydownTargetType";
import { IgrBaseEventArgsDetail } from "./igr-base-event-args-detail";
import { GridKeydownEventArgsDetail as GridKeydownEventArgsDetail_internal } from "./GridKeydownEventArgsDetail";
/**
 * Represents an event, emitted when keydown is triggered over element inside grid's body
 * This event is fired only if the key combination is supported in the grid.
*/
export declare class IgrGridKeydownEventArgsDetail extends IgrBaseEventArgsDetail {
    protected createImplementation(): GridKeydownEventArgsDetail_internal;
    /**
                                 * @hidden
                                 */
    get i(): GridKeydownEventArgsDetail_internal;
    constructor();
    /**
     * The `targetType` represents the type of the targeted object. For example a cell or a row
    */
    get targetType(): GridKeydownTargetType;
    set targetType(v: GridKeydownTargetType);
    /**
     * Represents the information and details of the object itself
    */
    get target(): any;
    set target(v: any);
    /**
     * Represents the original event, that occurred.
    */
    get event(): any;
    set event(v: any);
    /**
     * The event is cancelable
     * `cancel` returns whether the event has been intercepted and stopped
     * If the value becomes "true", it returns/exits from the method, instantiating the interface
    */
    get cancel(): boolean;
    set cancel(v: boolean);
}
