import React from "react"; export type DividedSectionProps = React.HTMLAttributes & { borderTop?: boolean; borderBottom?: boolean; borderLeft?: boolean; borderRight?: boolean; }; export default function DividedSection({ borderTop, borderBottom, borderLeft, borderRight, ...props }: DividedSectionProps): React.JSX.Element;