export type PointerSized = UInt64 | NativePointer | number; export type RawFields = PointerSized[]; export declare function makeBufferFromValue(fields: RawFields): NativePointer; export declare function makeValueFromBuffer(buffer: NativePointer, lengthInBytes: number): UInt64[]; export declare function moveValueToBuffer(fields: UInt64[], buffer: NativePointer): void; export declare function sizeInQWordsRounded(stride: number): number;