import * as React from "react"; export type DividerProps = React.ComponentProps<"div"> & { orientation?: "horizontal" | "vertical"; dashed?: boolean; label?: React.ReactNode; labelPosition?: "start" | "center" | "end"; }; declare function Divider({ orientation, dashed, label, labelPosition, className, ...props }: DividerProps): React.JSX.Element; export { Divider };