import { IoSource } from '@wowserhq/io'; import M2Batch from './M2Batch.js'; import M2Model from './M2Model.js'; import { M2SkinSection } from './types.js'; declare class M2SkinProfile { #private; constructor(model: M2Model); get batches(): M2Batch[]; get indices(): Uint16Array; get skinSections(): M2SkinSection[]; get vertices(): Uint16Array; load(source: IoSource): this; } export default M2SkinProfile; export { M2SkinProfile };