import { ValidationStatus } from "./ValidationStatus";
import { IgrGridBaseDirective } from "./igr-grid-base-directive";
import { GridValidationStatusEventArgsDetail as GridValidationStatusEventArgsDetail_internal } from "./GridValidationStatusEventArgsDetail";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Interface representing the event arguments for the grid validation status change event.
 * - status: The validation status ('VALID' or 'INVALID').
 * - owner: The grid instance that owns the validation state.
*/
export declare class IgrGridValidationStatusEventArgsDetail {
    protected createImplementation(): GridValidationStatusEventArgsDetail_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): GridValidationStatusEventArgsDetail_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    get status(): ValidationStatus;
    set status(v: ValidationStatus);
    get owner(): IgrGridBaseDirective;
    set owner(v: IgrGridBaseDirective);
    findByName(name: string): any;
    setNativeElement(element: any): void;
}
