import * as CSS from "csstype"; import { SystemBorderWidths, SystemColor, SystemRadii } from "./types"; export { border } from "styled-system"; import { ResponsiveProp } from "./types"; export declare type BorderProps = { borderStyle?: ResponsiveProp; borderWidth?: ResponsiveProp; borderColor?: ResponsiveProp; borderRadius?: ResponsiveProp; borderTopStyle?: ResponsiveProp; borderTopWidth?: ResponsiveProp; borderTopColor?: ResponsiveProp; borderTopLeftRadius?: ResponsiveProp; borderTopRightRadius?: ResponsiveProp; borderBottomStyle?: ResponsiveProp; borderBottomWidth?: ResponsiveProp; borderBottomColor?: ResponsiveProp; borderBottomLeftRadius?: ResponsiveProp; borderBottomRightRadius?: ResponsiveProp; borderLeftStyle?: ResponsiveProp; borderLeftWidth?: ResponsiveProp; borderLeftColor?: ResponsiveProp; borderRightStyle?: ResponsiveProp; borderRightWidth?: ResponsiveProp; borderRightColor?: ResponsiveProp; };