import { NehanElement } from "./public-api";
export declare type ListStylePositionValue = "inside" | "outside";
export declare class ListStylePosition {
    value: ListStylePositionValue;
    constructor(value: ListStylePositionValue);
    isOutside(): boolean;
    isInside(): boolean;
    static load(element: NehanElement): ListStylePosition;
}
