/// export interface Props { color?: string; size?: 1 | 2 | 3 | 4 | 5; width?: string; height?: string; spacing?: { top?: string; bottom?: string; right?: string; left?: string; }; alignment?: 'right' | 'center' | 'left'; dashed?: boolean; solid?: boolean; type?: 'horizontal' | 'vertical'; } declare const Divider: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLHRElement>, Props>>; export default Divider;