import { SpreadsheetEditModeValidationErrorEventArgs as SpreadsheetEditModeValidationErrorEventArgs_internal } from "./SpreadsheetEditModeValidationErrorEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
import { SpreadsheetEditModeValidationErrorAction } from "./SpreadsheetEditModeValidationErrorAction";
import { SpreadsheetCell } from "./SpreadsheetCell";
import { DataValidationRule } from "igniteui-react-excel";
/**
 * Event arguments for the
 * editModeValidationError event.
*/
export declare class IgrSpreadsheetEditModeValidationErrorEventArgs {
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): SpreadsheetEditModeValidationErrorEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Returns or sets the action to take in response to the failed validation.
     * By default the property is set to null and the control will display a message box to obtain the action
     * from the end user. If the property is set to a non-null value, that action will be used and the message box will not be
     * displayed.
    */
    get action(): SpreadsheetEditModeValidationErrorAction;
    set action(v: SpreadsheetEditModeValidationErrorAction);
    /**
     * Returns a boolean indicating whether the cell is allowed to stay in edit mode.
    */
    get canStayInEditMode(): boolean;
    set canStayInEditMode(v: boolean);
    /**
     * Returns the cell for which the control has entered edit mode.
    */
    get cell(): SpreadsheetCell;
    set cell(v: SpreadsheetCell);
    /**
     * Returns the rule which failed validation.
    */
    get validationRule(): DataValidationRule;
    set validationRule(v: DataValidationRule);
}
