import { BorderProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface BorderProps { /** * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`. * * @see https://developer.mozilla.org/docs/Web/CSS/border */ style$Border: T; } export declare const border: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;