import { FocusEventArgs as FocusEventArgs_internal } from "./FocusEventArgs";
import { ContentChildrenManager } from "./ContentChildrenManager";
export declare class IgrFocusEventArgs {
    protected createImplementation(): FocusEventArgs_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): FocusEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    get target(): any;
    set target(v: any);
    get fromTarget(): any;
    set fromTarget(v: any);
}
