import { MaterialProps } from './interfaces.ts'; export interface BasicMaterialProps extends MaterialProps { } /** * Basic unlit material that ignores scene lighting. * * Use this for: * - UI elements and overlays * - Unlit textures (e.g., skyboxes, billboards) * - Performance-critical scenarios * - Debugging geometry without lighting interference * * @example * ```tsx * * * * ``` */ export declare function BasicMaterial({ color, opacity, transparent, wireframe, side, map, mapRepeat, }: BasicMaterialProps): import("react/jsx-runtime").JSX.Element;