import type { DividerOrientation } from './types';
import type { Theme } from '../../utils/styles';
/**
* @component diwa-divider
*
* A purely presentational separator line. Renders a native `
` element
* styled via CSS-in-JS. Supports horizontal (default) and vertical orientations.
*
* Accessibility:
* - Renders as `role="separator"` (implicit from `
`)
* - `aria-orientation` is set automatically from the `orientation` prop
* - Non-interactive — no focus, no keyboard handling
*
* Usage:
*
*
*
*
*
* Left
*
* Right
*
*/
export declare class DiwaDivider {
/** Per-component theme override (`light` / `dark`). */
theme: Theme;
/**
* Orientation of the divider line.
* - `'horizontal'` (default) — a full-width 1 px horizontal rule.
* - `'vertical'` — a 1 px vertical rule that stretches to the parent's height.
* The parent must be a flex or grid container with a defined height.
*/
orientation: DividerOrientation;
render(): any;
}
//# sourceMappingURL=diwa-divider.d.ts.map