/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Observable } from 'rxjs'; import { DataSource } from './data-source'; /** DataSource wrapper for a native array. */ export declare class ArrayDataSource extends DataSource { private _data; constructor(_data: readonly T[] | Observable); connect(): Observable; disconnect(): void; }