/// <reference types="react" />
import { DividerProps } from './type';
declare const Divider: {
    ({ as, className, ...props }: DividerProps): import("react").ReactElement<{
        className: string;
    }, string | import("react").JSXElementConstructor<any>>;
    displayName: string;
};
export default Divider;
