import { ReactNode } from 'react';
interface Props {
    id?: string;
    label?: ReactNode | string;
    type?: string;
    color?: string;
    className?: string;
    labelClassName?: string;
}
declare const Divider: React.FC<Props>;
export default Divider;
