import React from 'react'; import { ComponentProps } from '../../lib'; export interface DividerProps extends ComponentProps, React.HTMLAttributes { children?: React.ReactElement | string; } export declare const Divider: React.MemoExoticComponent<({ className, children, ...props }: DividerProps) => React.ReactElement>;