import type { CommonProps } from '../types.js'; export interface DividerProps extends CommonProps { /** * The orientation of the divider (horizontal or vertical). * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; } /** Renders a divider between adjacent content. */ declare const _Divider: (props: DividerProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Divider as Divider }; //# sourceMappingURL=divider.d.ts.map