import React from "react"; type Sizes = "m" | "l" | "xl"; export type DividerProps = { "data-e2e-test-id"?: string; /** To be used only when orientation is horizontal. */ text?: string; orientation?: "horizontal" | "vertical"; /** * To be used only when orientation is vertical. * Represents the height of the vertical Divider. * @default 'm' */ size?: Sizes; }; export declare function Divider({ text, "data-e2e-test-id": dataE2eTestId, orientation, size, ...ariaAttributes }: Readonly): React.ReactElement; export {};