declare const radius: { /** * 0.5rem (8px) */ default: string; /** * 0.25rem (4px) */ s: string; /** * 0.125rem (2px) */ xs: string; /** * 50% * * Visually rendered with radius of 50% of element width AND 50% of element height * E.g.: Element with width 100px and height 32px will be rendered with radius 50px on "x" axis and 16px on "y" axis */ circle: string; /** * 100rem * * Visually rendered with radius of half the size of the smaller side of element due to https://www.w3.org/TR/css-backgrounds-3/#corner-overlap rule * E.g.: Element with width 100px and height 32px will be rendered with radius 16px on both axis (all corners) */ pill: string; }; export default radius;