import { type Writable } from 'svelte/store'; import type { ThrelteGltf } from '../../types/types'; declare type UseGltfOptions = { useDraco?: boolean | string; }; export declare const useGltf: (url: string, options?: UseGltfOptions) => { gltf: Writable>; }; export {};