import { Texture } from "./texture"; import type * as p from "../../core/properties"; import type { Color } from "../../core/types"; import type { PatternSource } from "../../core/visuals/patterns"; export declare namespace ImageURLTexture { type Attrs = p.AttrsOf; type Props = Texture.Props & { url: p.Property; }; } export interface ImageURLTexture extends ImageURLTexture.Attrs { } export declare class ImageURLTexture extends Texture { properties: ImageURLTexture.Props; constructor(attrs?: Partial); private _loader; initialize(): void; get_pattern(_color: Color, _scale: number, _weight: number): PatternSource | Promise; } //# sourceMappingURL=image_url_texture.d.ts.map