import { type TextProps } from './Text';
import React from 'react';
interface SeparatorProps extends TextProps {
    type?: 'vertical' | 'horizontal';
    height?: number;
    width?: number;
}
export default function Separator({ type, height: _height, width: _width, ...props }: SeparatorProps): React.JSX.Element;
export {};
