import React from 'react';
import './divider.scss';
export interface IDividerProps {
    split: (dimension: 'v' | 'h' | 'm', node: any) => void;
}
export declare const initSingletonDivider: (id?: string) => void;
export declare const Divider: (props: IDividerProps) => React.JSX.Element | null;
