import { DataSourceSupportingCalculation as DataSourceSupportingCalculation_internal } from "./DataSourceSupportingCalculation";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Represents a calculation strategy that uses the calculation data source
 * to product a column of values.
*
* `DataSourceSupportingCalculation` class Represents a calculation strategy that uses the calculation data source to product a column of values.
*
*     DataSourceSupportingCalculation SC = new DataSourceSupportingCalculation();
*/
export declare class IgrDataSourceSupportingCalculation {
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): DataSourceSupportingCalculation_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    findByName(name: string): any;
}
