import { TypedArray } from './typedarray';
/**
 * Struct backed by a TypedArray.
 */
export declare class Struct<T extends TypedArray> {
    /**
     * The TypedArray backing this item.
     */
    data: T;
    /**
     * Creates a struct backed by a TypedArray.
     * @param data the backing array.
     */
    constructor(data: T);
}
