import { ViewModelInstance } from '@rive-app/canvas'; import { UseViewModelInstanceBooleanResult } from '../types'; /** * Hook for interacting with boolean ViewModel instance properties. * * @param path - The path to the boolean property * @param viewModelInstance - The ViewModelInstance containing the boolean property to operate on * @returns An object with the boolean value and a setter function */ export default function useViewModelInstanceBoolean(path: string, viewModelInstance?: ViewModelInstance | null): UseViewModelInstanceBooleanResult;