import type { Buffer, Device } from '@antv/g-device-api'; import type { IElements, IElementsInitializationOptions } from '@antv/l7-core'; export default class DeviceElements implements IElements { private indexBuffer; private type; private count; constructor(device: Device, options: IElementsInitializationOptions); get(): Buffer; subData({ data, }: { data: number[] | number[][] | Uint8Array | Uint16Array | Uint32Array; }): void; destroy(): void; }