import { VRM } from "@pixiv/three-vrm"; //#region src/use-vrm-breathing/index.d.ts interface UseVRMBreathingOptions { /** Breaths per minute (default: 18) */ bpm?: number; /** How much the chest scales on inhale (default: 0.01) */ intensity?: number; } declare function useVRMBreathing(vrm: VRM, { bpm, intensity }?: UseVRMBreathingOptions): void; //#endregion export { useVRMBreathing as n, UseVRMBreathingOptions as t };