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