import type { IAttribute, IElements, IModel } from '@antv/l7-core'; import BaseModel from '../../core/BaseModel'; export default class FillImageModel extends BaseModel { protected get attributeLocation(): { readonly POSITION: 0; readonly POSITION_64LOW: 1; readonly COLOR: 2; readonly PICKING_COLOR: 3; readonly STROKE: 4; readonly OPACITY: 5; readonly OFFSETS: 6; readonly ROTATION: 7; readonly MAX: 8; } & Record & { MAX: 8; SIZE: number; EXTRUDE: number; UV: number; }; private meter2coord; private texture; private isMeter; private radian; protected getCommonUniformsInfo(): { uniformsArray: number[]; uniformsLength: number; uniformsOption: { [key: string]: any; }; }; getAttribute(): { attributes: { [attributeName: string]: IAttribute; }; elements: IElements; }; initModels(): Promise; buildModels(): Promise; clearModels(): void; protected registerBuiltinAttributes(): void; private updateTexture; }