import { ColumnSupportingCalculation as ColumnSupportingCalculation_internal } from "./ColumnSupportingCalculation";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Represents a calculation strategy that takes in a column of values
 * and returns a resulting column of values.
*/
export declare class IgrColumnSupportingCalculation {
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): ColumnSupportingCalculation_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    findByName(name: string): any;
}
