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