import { default as React } from 'react'; export interface DividerProps extends React.HTMLAttributes { /** Divider orientation */ orientation?: "horizontal" | "vertical"; /** Optional centered label text */ label?: string; /** Spacing around the divider (CSS value) */ spacing?: string; /** Color override */ color?: string; /** Dashed style */ dashed?: boolean; } export declare const Divider: React.NamedExoticComponent; export default Divider;