import { Matrix } from '../../../../maths/matrix/Matrix'; import { Pool } from '../../../../utils/pool/Pool'; import { Bounds } from '../Bounds'; import type { PoolItem } from '../../../../utils/pool/Pool'; type MatrixPoolItem = Matrix & PoolItem; type BoundsPoolItem = Bounds & PoolItem; /** @internal */ export declare const matrixPool: Pool; /** @internal */ export declare const boundsPool: Pool; export {};