export declare enum CSS_POSITION {
    Static = "static",
    Relative = "relative",
    Absolute = "absolute",
    Fixed = "fixed",
    Sticky = "sticky"
}
export declare const CSS_POSITION_OPTIONS: {
    value: string;
    label: string;
    textLabel: string;
}[];
