declare type Options = Partial<{ /** * Show warning when .obj file missing .mtl or texture * @default true */ missingFileWarning: boolean; /** * Use draco loader * @default false */ draco: boolean; }>; declare type AssetName = 'map_Ka' | 'map_Kd' | 'map_Ks' | 'map_Ns' | 'map_d' | 'map_bump' | 'bump' | 'disp' | 'decal'; interface Obj { /** Obj file source */ obj: string; /** Mtl */ mtl?: { /** Map of original MTL paths to import paths resolved by bundler */ paths: Record; /** Map of material name and it maps */ materials: Record>; }>; get raw(): string; toString(): string; }[]; } export { Obj, Options };