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