import { Textbox } from "fabric";
import { FabricObjectPropertyList } from "../types/WrapperFabricType";
import { WrapperFabric } from "./WrapperFabric";
export declare class TextBoxObj extends WrapperFabric {
    obj: Textbox;
    constructor(textObj: Textbox);
    setFontFamily(font: string): void;
    setFontStyle(style: string): void;
    setFontWeight(weight: "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900"): void;
    setFontSize(size: number): void;
    setTextAlign(alignMent: string): void;
    setTextFill(color: string): void;
    setTextBackground(color: string): void;
    setBackground(background: string): void;
    getObjectValues(): FabricObjectPropertyList;
}
//# sourceMappingURL=TextBoxObj.d.ts.map