import { Material, MeshPhysicalMaterial, MeshStandardMaterial } from 'three'; export type TWithMetalness = Material & Pick; export type TWithRoughness = Material & Pick; export type TWithAoIntensity = Material & Pick; export type TWithDisplacementScale = Material & Pick; export type TWithClearcoat = Material & Pick; export type TWithClearcoatRoughness = Material & Pick; export type TWithSheen = Material & Pick; export type TWithSheenRoughness = Material & Pick; export type TWithSheenColor = Material & Pick; export type TWithIridescence = Material & Pick; export type TWithIridescenceIOR = Material & Pick; export type TWithTransmission = Material & Pick; export type TWithIOR = Material & Pick; export type TWithThickness = Material & Pick;