import { FC, HTMLAttributes } from 'react';
declare const Separator: FC;
export interface SeparatorProps extends HTMLAttributes {
/**
* color - color of the Separator line
*/
color?: string;
/**
* width - horizontal size of the Separator line
*/
width?: string;
/**
* align - set the horizontal position of the Separator line
*/
centered?: boolean;
/**
* bottomSpacing - space between Separator line and bottom components
*/
bottomSpacing?: number;
/**
* topSpacing - space between Separator line and top components
*/
topSpacing?: number;
}
export { Separator };