import { SVGInstance } from "../../../node/instance/SVGInstance.js";
export declare class Font extends SVGInstance {
    fontFamily(): string | null;
    fontFamily(fontFamily: string): this;
    fontSize(): string | number | null;
    fontSize(fontSize: string | number): this;
    fontStyle(): string | null;
    fontStyle(fontStyle: "normal" | "italic" | "oblique"): this;
    fontWeight(): string | number | null;
    fontWeight(fontWeight: "normal" | "bold" | "bolder" | "lighter" | number): this;
}
