import React from "react"; interface Props { children?: string | React.ReactElement | React.ReactElement[] | React.ReactNode; childrenAlign?: "start" | "center" | "end"; childrenGap?: number; color?: string; indent?: number; endIndent?: number; thickness?: number; orientation?: "vertical" | "horizontal"; } declare const Divider: ({ children, childrenAlign, color, indent, endIndent, thickness, childrenGap, orientation, }: Props) => React.JSX.Element; export default Divider;