import * as React from 'react'; import { BoxProps } from '../box/Box'; export type DividerProps = BoxProps & { children: React.ReactNode; className?: string; backgroundColor?: string; }; export declare const Divider: React.FC; export default Divider;