import { HTMLAttributes, RefAttributes } from 'react';
export type DividerOptions = {
/**
* Separator's orientation.
*/
orientation?: 'horizontal' | 'vertical';
};
export type DividerHTMLProps = HTMLAttributes & RefAttributes;
export type DividerProps = DividerOptions & DividerHTMLProps;
export declare const Divider: import("react").ForwardRefExoticComponent & RefAttributes>;