import { BaseTextItem } from "./BaseTextItem";
import { PointF } from "../../Math/PointF";
export declare class PlainTextItem extends BaseTextItem {
    private _baselineLocation;
    private _isVertical;
    constructor(text?: string, location?: PointF, postScriptFontName?: string, fontSize?: number);
    get isVertical(): boolean;
    set isVertical(value: boolean);
    get baselineLocation(): PointF;
    set baselineLocation(value: PointF);
    setBaselineLocation(value: PointF, suppressPropertyChanged?: boolean): void;
    static type: string;
    type: string;
    applyPermissionsConstrain(): void;
    getSimplifiedObject(omitProperties?: string[] | string): Object;
    protected _copy(source: PlainTextItem, destination: BaseTextItem, generateNewIds: boolean, appropriateParentContainer: boolean): BaseTextItem;
    equals(other: PlainTextItem): boolean;
    clone(generateNewIds?: boolean, appropriateParentContainer?: boolean): PlainTextItem;
}
