import * as React from 'react'; export interface iDivider { absolute?: boolean; flex?: boolean; light?: boolean; orientation?: 'horizontal' | 'vertical'; variant?: 'fullWidth' | 'inset' | 'middle'; } export declare const Divider: (props: iDivider) => React.JSX.Element;