import { Transform, vec3 } from '@gltf-transform/core'; export interface CenterOptions { pivot?: 'center' | 'above' | 'below' | vec3; } /** * Options: * - **pivot**: Location on the model to be considered the pivot, and recentered at the origin. */ export declare function center(options?: CenterOptions): Transform;