import { FunctionComponent } from 'react'; import { IAppStyle } from '../../theme'; export interface ISeparatorProps { direction: 'horizontal' | 'vertical'; className?: string; } export declare type ISeparator = FunctionComponent; export declare type ISeparatorStyle = IAppStyle;