import { IgrChartSummaryDescription } from "./igr-chart-summary-description";
import { ChartSummaryDescriptionCollection as ChartSummaryDescriptionCollection_internal } from "./ChartSummaryDescriptionCollection";
export declare class IgrChartSummaryDescriptionCollection {
    protected createImplementation(): ChartSummaryDescriptionCollection_internal;
    protected _implementation: any;
    get i(): ChartSummaryDescriptionCollection_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    item(index: number, value?: IgrChartSummaryDescription): IgrChartSummaryDescription;
    get count(): number;
    toArray(): IgrChartSummaryDescription[];
    [Symbol.iterator](): Generator<any, void, unknown>;
    /**
 * Gets or sets whether this collection should detach the sync when the target collection changes.
*/
    get shouldDetachOnTargetChange(): boolean;
    set shouldDetachOnTargetChange(v: boolean);
    findByName(name: string): any;
    add(item: IgrChartSummaryDescription): boolean;
    insert(index: number, item: IgrChartSummaryDescription): void;
    clear(): void;
    indexOf(item: IgrChartSummaryDescription): number;
    remove(item: IgrChartSummaryDescription): boolean;
    removeAt(index: number): IgrChartSummaryDescription;
}
