import { HTMLAttributes } from 'react'; export type DividerProps = { vertical?: boolean; } & HTMLAttributes; export declare const Divider: ({ vertical, ...props }: DividerProps) => import("react/jsx-runtime").JSX.Element;