import { Component } from 'react'; import { StyledComponentCSS } from '../../../core'; export declare type HorizontalSeparatorColoration = 'light' | 'default' | 'heavy' | 'highlight'; export interface HorizontalSeparatorStyleOptions { coloration?: HorizontalSeparatorColoration; gradient?: boolean; thick?: boolean; } export declare type HorizontalSeparatorStyleGenerator = (options: HorizontalSeparatorStyleOptions) => StyledComponentCSS; export interface HorizontalSeparatorProps extends HorizontalSeparatorStyleOptions { className?: string; } export interface IHorizontalSeparator extends Component { }