import type { HTMLAttributes } from 'react'; import type { TDividerType } from './Divider.type'; export type TDividerProps = { /** Set the Divider's type. It will affect the Divider's position */ type?: TDividerType; } & HTMLAttributes; declare const Divider: (props: TDividerProps) => import("react/jsx-runtime").JSX.Element; export default Divider;