import * as React from "react"; import { BoxProps } from "./Box"; import { BoxSides } from "../../../shared/styles/styleUtils/modifiers/modifierUtils"; import { BorderRadii, BorderVariant } from "../../../shared/styles/styleUtils/modifiers/border"; export interface BorderedBoxProps extends BoxProps { /** * Which side (or sides) the border should be on */ side: BoxSides; /** * Sets a `border-radius` */ radius?: BorderRadii; /** * Which style of border to use */ variant?: BorderVariant; } declare const BorderedBox: (props: BorderedBoxProps) => React.JSX.Element; export default BorderedBox;