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