import type * as CSS from 'csstype'; import type { ResponsiveValue } from './responsiveValue'; export interface customBorderProps { rounded?: ResponsiveValue>; roundedTopLeft?: ResponsiveValue>; roundedTopRight?: ResponsiveValue>; borderTopLeftRadius?: ResponsiveValue>; borderTopRightRadius?: ResponsiveValue>; roundedBottomLeft?: ResponsiveValue>; roundedBottomRight?: ResponsiveValue>; borderBottomLeftRadius?: ResponsiveValue>; borderBottomRightRadius?: ResponsiveValue>; borderTopRadius?: ResponsiveValue>; roundedTop?: ResponsiveValue>; borderBottomRadius?: ResponsiveValue>; roundedBottom?: ResponsiveValue>; borderLeftRadius?: ResponsiveValue>; roundedLeft?: ResponsiveValue>; borderRightRadius?: ResponsiveValue>; roundedRight?: ResponsiveValue>; } export declare const customBorder: import("styled-system").styleFn;