/// export interface HorizontalLineProps { className?: string; style?: React.CSSProperties; color?: string; text?: string; } declare const HorizontalLine: ({ className, style, color, text }: HorizontalLineProps) => import("react/jsx-runtime").JSX.Element; export { HorizontalLine };