export declare const wrapper: import("@vanilla-extract/recipes").RuntimeFn<{ borderArea: { bothBorders: { borderRight: string; }; leftBorder: { borderLeft: string; }; rightBorder: { borderLeft: "none"; borderRight: string; }; }; /** Transformations applied to the div (svg parent) * as we need to keep our original coordinate system, * but still be able to rotate or flip. */ layoutType: { 'vertical-flip': { transform: "scaleX(-1) translateX(-100%)"; }; 'vertical-no-flip': { transform: "none"; }; 'horizontal-flip': { transform: "rotate(-90deg) scaleX(-1)"; }; 'horizontal-no-flip': { transform: "rotate(-90deg) translateX(-100%)"; }; }; }>;