import { BaseUIComponentProps, Orientation } from "../utils/types.mjs";
import * as React$1 from "react";

//#region node_modules/@base-ui/react/esm/separator/Separator.d.ts
/**
 * A separator element accessible to screen readers.
 * Renders a `<div>` element.
 *
 * Documentation: [Base UI Separator](https://base-ui.com/react/components/separator)
 */
declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
interface SeparatorProps extends BaseUIComponentProps<'div', Separator.State> {
  /**
   * The orientation of the separator.
   * @default 'horizontal'
   */
  orientation?: Orientation;
}
interface SeparatorState {
  /**
   * The orientation of the separator.
   */
  orientation: Orientation;
}
declare namespace Separator {
  type Props = SeparatorProps;
  type State = SeparatorState;
}
//#endregion
export { SeparatorProps };
//# sourceMappingURL=Separator.d.mts.map