export { TypedArray$1 as default }; declare var TypedArray$1: typeof TypedArray; declare class TypedArray { static Class: any; static fromApi(arr: any): TypedArray; static fromJSON(arr: any): TypedArray; static from(value: any): TypedArray; constructor(...items: any[]); push(item: any): number; unshift(item: any): number; apply(fn: any): any[]; eq(other: any): boolean; diff(other: any): { added: any; removed: any; }; toJSON(): any[]; }