import { NehanElement } from "./public-api";
export declare type OverflowWrapValue = "normal" | "break-word";
export declare class OverflowWrap {
    value: OverflowWrapValue;
    constructor(value: OverflowWrapValue);
    static load(element: NehanElement): OverflowWrap;
    isNormal(): boolean;
    isBreakWord(): boolean;
}
