import React, { HTMLAttributes } from 'react';
import { MarginMixin, PaddingMixin } from '../../base/spacing';
export declare const dividerColors: Record<"cyan" | "green" | "orange" | "pink" | "purple" | "red" | "yellow", string>;
/**
* Divider Props
*/
export interface DividerProps extends HTMLAttributes, PaddingMixin, MarginMixin {
/** The Dracula UI color for the Divider. */
color?: keyof typeof dividerColors;
}
/**
* Dividers are horizontal lines used to separate semantic blocks of
* content or UI patterns.
*/
export declare const Divider: React.FC;