import { IgrDataSourceSummaryDescription } from "./igr-data-source-summary-description"; import { DataSourceSummaryDescriptionCollection as DataSourceSummaryDescriptionCollection_internal } from "./DataSourceSummaryDescriptionCollection"; import { ContentChildrenManager } from "./ContentChildrenManager"; export declare class IgrDataSourceSummaryDescriptionCollection { protected createImplementation(): DataSourceSummaryDescriptionCollection_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): DataSourceSummaryDescriptionCollection_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * 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: IgrDataSourceSummaryDescription): boolean; insert(index: number, item: IgrDataSourceSummaryDescription): void; clear(): void; indexOf(item: IgrDataSourceSummaryDescription): number; remove(item: IgrDataSourceSummaryDescription): boolean; removeAt(index: number): IgrDataSourceSummaryDescription; }