import { type TextProps } from './Text';
interface BarProps extends TextProps {
    type: 'vertical' | 'horizontal';
    y?: number;
    x?: number;
    height?: number;
    width?: number;
}
export default function Bar({ type, y, x, height, width, ...props }: BarProps): JSX.Element | null;
export {};
