import { Description } from "./Description";
import { WebSizeDescription } from "./WebSizeDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebPositionSettingsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private o;
    get horizontalDirection(): string;
    set horizontalDirection(a: string);
    private q;
    get verticalDirection(): string;
    set verticalDirection(a: string);
    private p;
    get horizontalStartPoint(): string;
    set horizontalStartPoint(a: string);
    private r;
    get verticalStartPoint(): string;
    set verticalStartPoint(a: string);
    private k;
    get minSize(): WebSizeDescription;
    set minSize(a: WebSizeDescription);
    private m;
    get offset(): number;
    set offset(a: number);
}
