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