import { SpaceProps } from 'styled-system'; export declare type DividerVariants = 'dotted' | 'solid'; export declare type DividerProps = SpaceProps & { /** Sets color for Divider */ color?: string; /** One of "dotted", "solid" */ variant?: DividerVariants; }; export declare const Divider: import("@emotion/styled-base").StyledComponent, HTMLDivElement>, DividerProps, any>;