export declare const LAYOUT_MODE_MAP: { readonly 'flex-row': "HORIZONTAL"; readonly 'flex-col': "VERTICAL"; }; export declare const LAYOUT_WRAP_MAP: { readonly wrap: "WRAP"; readonly nowrap: "NO_WRAP"; }; export declare const PRIMARY_AXIS_ALIGN_MAP: { readonly 'justify-start': "MIN"; readonly 'justify-center': "CENTER"; readonly 'justify-end': "MAX"; readonly 'justify-between': "SPACE_BETWEEN"; }; export declare const COUNTER_AXIS_ALIGN_MAP: { readonly 'items-start': "MIN"; readonly 'items-center': "CENTER"; readonly 'items-end': "MAX"; readonly 'items-baseline': "BASELINE"; }; export declare const SIZING_MAP: { readonly auto: "HUG"; readonly full: "FILL"; }; export declare const TEXT_ALIGNMENTS: { readonly left: "LEFT"; readonly center: "CENTER"; readonly right: "RIGHT"; readonly justify: "JUSTIFIED"; }; export declare const BLEND_MODE_MAP: { readonly normal: "NORMAL"; readonly multiply: "MULTIPLY"; readonly screen: "SCREEN"; readonly overlay: "OVERLAY"; readonly darken: "DARKEN"; readonly lighten: "LIGHTEN"; readonly 'color-dodge': "COLOR_DODGE"; readonly 'color-burn': "COLOR_BURN"; readonly 'hard-light': "HARD_LIGHT"; readonly 'soft-light': "SOFT_LIGHT"; readonly difference: "DIFFERENCE"; readonly exclusion: "EXCLUSION"; readonly hue: "HUE"; readonly saturation: "SATURATION"; readonly color: "COLOR"; readonly luminosity: "LUMINOSITY"; }; export declare const GRADIENT_TRANSFORMS: { readonly 'to-t': readonly [readonly [1, 0, 0], readonly [0, -1, 1]]; readonly 'to-r': readonly [readonly [1, 0, 0], readonly [0, 1, 0]]; readonly 'to-b': readonly [readonly [1, 0, 0], readonly [0, 1, 0]]; readonly 'to-l': readonly [readonly [-1, 0, 1], readonly [0, 1, 0]]; readonly 'to-tr': readonly [readonly [0.7071, -0.7071, 0], readonly [0.7071, 0.7071, 0]]; readonly 'to-tl': readonly [readonly [-0.7071, -0.7071, 1], readonly [0.7071, -0.7071, 0]]; readonly 'to-br': readonly [readonly [0.7071, 0.7071, 0], readonly [-0.7071, 0.7071, 0]]; readonly 'to-bl': readonly [readonly [-0.7071, 0.7071, 1], readonly [-0.7071, -0.7071, 1]]; };