import { ShaderMaterial } from 'three'; export type QuadTextureMaterialOptions = { lights: boolean; wireframe: boolean; fog: boolean; }; export declare const defaultTextureOptions: QuadTextureMaterialOptions; export declare const QuadTextureMaterial: (urls: string[], options?: Partial) => Promise;