export declare enum CSS_ALIGN {
    Stretch = "stretch",
    Center = "center",
    Start = "flex-start",
    End = "flex-end",
    Baseline = "baseline"
}
export declare const CSS_ALIGN_ITEMS_OPTIONS: {
    value: string;
    label: string;
    textLabel: string;
}[];
export declare const CSS_ALIGN_SELF_OPTIONS: {
    value: string;
    label: string;
    textLabel: string;
}[];
export declare const CSS_JUSTIFY_ITEMS_OPTIONS: {
    value: string;
    label: string;
    textLabel: string;
}[];
export declare enum CSS_JUSTIFY {
    Center = "center",
    Start = "flex-start",
    End = "flex-end",
    SpaceBetween = "space-between",
    SpaceAround = "space-around",
    SpaceEvenly = "space-evenly",
    Stretch = "stretch"
}
export declare const CSS_JUSTIFY_CONTENT_OPTIONS: {
    value: string;
    label: string;
    textLabel: string;
}[];
export declare const CSS_JUSTIFY_SELF_OPTIONS: {
    value: string;
    label: string;
    textLabel: string;
}[];
export declare const CSS_ALIGN_CONTENT_OPTIONS: {
    value: string;
    label: string;
    textLabel: string;
}[];
