import * as THREE from "three"; export type FabricKind = "jersey" | "rib" | "twill" | "canvas"; /** Tiling fabric normal map for a garment mesh (cached per fabric kind). */ export declare const useFabricNormal: (kind: FabricKind, repeat?: number) => THREE.Texture | null;