export interface AmmoDebugOptions { DrawWireframe?: boolean; DrawAabb?: boolean; DrawFeaturesText?: boolean; DrawContactPoints?: boolean; NoDeactivation?: boolean; NoHelpText?: boolean; DrawText?: boolean; ProfileTimings?: boolean; EnableSatComparison?: boolean; DisableBulletLCP?: boolean; EnableCCD?: boolean; DrawConstraints?: boolean; DrawConstraintLimits?: boolean; FastWireframe?: boolean; DrawNormals?: boolean; MAX_DEBUG_DRAW_MODE?: boolean; } export declare function ammoDebugOptionsToNumber(debugOptions: AmmoDebugOptions): number; export declare type CompatibleBuffer = SharedArrayBuffer | ArrayBuffer; export declare const isSharedArrayBufferSupported = true; export declare function allocateCompatibleBuffer(byteLength: number): CompatibleBuffer;