import { CalloutContentUpdatingEventArgs as CalloutContentUpdatingEventArgs_internal } from "./CalloutContentUpdatingEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Represents event arguments for updating content of callout layer
*/
export declare class IgrCalloutContentUpdatingEventArgs {
    protected createImplementation(): CalloutContentUpdatingEventArgs_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): CalloutContentUpdatingEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets data X-value assositated with callout layer
    */
    get xValue(): any;
    set xValue(v: any);
    /**
     * Gets data Y-value assositated with callout layer
    */
    get yValue(): any;
    set yValue(v: any);
    /**
     * Gets data item assositated with callout layer
    */
    get item(): any;
    set item(v: any);
    /**
     * Gets or sets content displayed by callout layer
    */
    get content(): any;
    set content(v: any);
}
