import { CSSValue, ResponsiveStyle } from "./types"; export type BorderProps = Partial<{ borderTop: CSSValue<"borderTop">; borderRight: CSSValue<"borderRight">; borderLeft: CSSValue<"borderLeft">; borderBottom: CSSValue<"borderBottom">; borderRadius: CSSValue<"borderRadius", true>; borderStyle: CSSValue<"borderStyle">; borderWidth: CSSValue<"borderWidth", true>; }>; export declare const border: (props: BorderProps) => ResponsiveStyle;