import { IgcDataSourceSortDescription } from "./igc-data-source-sort-description"; import { DataSourceSortDescriptionCollection as DataSourceSortDescriptionCollection_internal } from "./DataSourceSortDescriptionCollection"; export declare class IgcDataSourceSortDescriptionCollection { protected createImplementation(): DataSourceSortDescriptionCollection_internal; protected _implementation: any; /** * @hidden */ get i(): DataSourceSortDescriptionCollection_internal; private onImplementationCreated; 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: IgcDataSourceSortDescription): boolean; insert(index: number, item: IgcDataSourceSortDescription): void; clear(): void; indexOf(item: IgcDataSourceSortDescription): number; remove(item: IgcDataSourceSortDescription): boolean; removeAt(index: number): IgcDataSourceSortDescription; }