import React from "react"; import { type DividerDirection } from "./Divider.types"; import { type VibeComponentProps } from "../../types"; export interface DividerProps extends VibeComponentProps { /** * The direction of the divider. */ direction?: DividerDirection; /** * If true, removes margin from the divider. */ withoutMargin?: boolean; } declare const Divider: ({ className, withoutMargin, direction, id, "data-testid": dataTestId }: DividerProps) => React.JSX.Element; export default Divider;