import React from 'react'; interface IBarProps extends React.HTMLAttributes { visibel?: boolean; className?: string; children?: React.ReactNode; } declare function Bar({ visibel, className, children, ...props }: IBarProps): JSX.Element; export default Bar;