import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { type DataTestId } from '../../core/types/data-props.js'; import { type StylingProps } from '../../core/types/styling-props.js'; /** @public * Divider component props. */ export interface DividerProps extends StylingProps, DataTestId, BehaviorTrackingProps { /** * Orientation of the Divider component. * @defaultValue 'horizontal' */ orientation?: 'horizontal' | 'vertical'; /** * Control the HTML tag used for rendering the Divider. * @defaultValue 'div' */ as?: 'hr' | 'div'; /** * Indicate whether the Divider is used inside a Flex component to apply the right styling. * If set to false, make sure to have an explicit width/height style set on a parent HTML tag. * @defaultValue true */ flexItem?: boolean; /** * The color of the Divider. * @defaultValue 'neutral' */ color?: 'primary' | 'neutral' | 'success' | 'warning' | 'critical'; /** * The visual style of the Divider. * @defaultValue 'default' */ variant?: 'default' | 'accent'; } /** * The `Divider` component visually separates groups of content. * @public */ export declare const Divider: (props: DividerProps & import("react").RefAttributes) => import("react").ReactElement | null;