import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerDividerProps extends InternalProps, StyledComponentProps { /** * @ignore */ children?: ReactNode; /** * The orientation of the divider. */ orientation?: ResponsiveProp<"horizontal" | "vertical">; } export declare function InnerDivider({ as, children, forwardedRef, orientation, ...rest }: InnerDividerProps): JSX.Element; export declare namespace InnerDivider { var defaultElement: string; } /** * A divider to separates and distinguishes sections of content or groups of menu items. * * [Documentation](https://orbit.sharegate.design/?path=/docs/divider--horizontal) */ export declare const Divider: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type DividerProps = ComponentProps; export {};