import { TextureBase } from "./TextureBase";
import { BitmapData } from "../../display/BitmapData";
import { ByteArray } from "../../utils/ByteArray";
export declare class RectangleTexture extends TextureBase {
    constructor();
    uploadFromBitmapData(param1: BitmapData): void;
    uploadFromByteArray(param1: ByteArray, param2: number): void;
}
