/// export interface Props { text?: string; spacing?: "small" | "large"; className?: string; } declare const Divider: ({ text, spacing, className }: Props) => JSX.Element; export default Divider;