/** @format */ /// interface DividerProps { borderColor?: string; borderWidth?: string; width?: string; borderStyle?: string; margin?: string; } declare const Divider: ({ borderColor, borderWidth, width, borderStyle, margin, }: DividerProps) => JSX.Element; export default Divider;