import type { CSSProperties, ReactNode } from 'react'; type SeparatorProps = { direction?: 'horizontal' | 'vertical'; sentiment?: 'danger' | 'info' | 'neutral' | 'primary' | 'secondary' | 'success' | 'warning'; thickness?: number; className?: string; 'data-testid'?: string; /** * @private */ 'data-flip-id'?: string; children?: ReactNode; style?: CSSProperties; }; export declare function Separator({ direction, thickness, sentiment, className, 'data-testid': dataTestId, 'data-flip-id': flipId, children, style, }: SeparatorProps): import("react").JSX.Element; export declare namespace Separator { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map