import { FunnelDataContext as FunnelDataContext_internal } from "./FunnelDataContext";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Represents contextual data for the funnel chart.
*/
export declare class IgrFunnelDataContext {
    protected createImplementation(): FunnelDataContext_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): FunnelDataContext_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * The data item that is in context.
    */
    get item(): any;
    set item(v: any);
    /**
     * The index of the data item that is in context.
    */
    get index(): number;
    set index(v: number);
    findByName(name: string): any;
}
