import { StyleOptions } from '../../types'; export interface BorderRadiusProps { /** * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners. * * @see https://developer.mozilla.org/docs/Web/CSS/border-radius */ style$BorderRadius: T; } export declare const borderRadius: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;