import React from 'react';
import { type BoxProps } from '../Box/Box';
interface FunDividerProps {
    marginTop?: BoxProps['marginTop'];
    marginBottom?: BoxProps['marginBottom'];
    borderColor?: BoxProps['borderColor'];
    label?: string;
    className?: string;
    visible?: boolean;
}
export declare function FunDivider({ marginTop, marginBottom, borderColor, label, className, visible, }: FunDividerProps): React.JSX.Element;
export {};
