import type { ShapeGeneratorOptions, ShapeParticle, IShape } from './type'; export declare class TextureShape implements IShape { width: number; height: number; block: number[]; anchors: Float32Array; arcMode: number; random: number; constructor(arg: any); generate(opt: ShapeGeneratorOptions): ShapeParticle; }