import { Matrix } from '@awayjs/core';
import { IFillStyle } from '../IGraphicsData';
import { Image2D } from '@awayjs/stage';
export declare class BitmapFillStyle implements IFillStyle {
    static data_type: string;
    /**
     * The Vector of drawing commands as integers representing the path.
     */
    image: Image2D;
    imgWidth: number;
    imgHeight: number;
    matrix: Matrix;
    repeat: boolean;
    smooth: boolean;
    private _uvMatrix;
    constructor(image: Image2D, matrix: Matrix, repeat: boolean, smooth: boolean);
    get data_type(): string;
    getUVMatrix(): Matrix;
}
//# sourceMappingURL=BitmapFillStyle.d.ts.map