import { A11y, Direction } from '@wix/editor-react-types'; import { MouseEventHandler } from 'react'; import * as React from 'react'; export type LineProps = { /** DOM `id` on the rendered `.line-wrapper`. */ id: string; /** Appended to `.line-wrapper`. Use this for CSS-variable overrides on every variant. */ className?: string; /** Extra classes routed through the semantic-class machinery. Most consumers don't need this. */ customClassNames?: Array; /** Fires on `mouseenter` of the root. Not a manifest contract. Pure React signature. */ onMouseEnter: MouseEventHandler; /** Fires on `mouseleave` of the root. Not a manifest contract. Pure React signature. */ onMouseLeave: MouseEventHandler; /** ARIA bag. Pass `ariaLabel` when the line is semantically meaningful. */ a11y?: A11y; /** Sets the `dir` attribute on the root. Defaults to the language direction reported by the environment service. */ direction?: Direction; wix?: { presetsWrapperProps?: Record; }; }; declare const Line: React.FC; export default Line;