import { Shader, Texture } from '@pixi/core'; import type { Matrix } from '@pixi/core'; /** * @memberof PIXI.smooth */ export declare class FillStyle { constructor(); color: number; alpha: number; texture: Texture; matrix: Matrix; matrixTex: Matrix; shader: Shader; visible: boolean; smooth: boolean; toJSON(): any; clone(): FillStyle; copyTo(obj: any): any; packLineScale(): number; reset(): void; destroy(): void; getTextureMatrix(): Matrix; }