import { HTMLAttributes, ReactNode, Ref } from 'react'; import { ComponentColor, IComponentBaseProps } from '../types'; export declare const DIVIDER = "divider"; export type DividerColor = Exclude; export declare const COLOR_MAP: Record; export type DividerDirection = "horizontal" | "vertical"; export declare const DIRECTION_MAP: Record; export type DividerPlacement = "start" | "end"; export declare const PLACEMENT_MAP: Record; type Variant = "dash"; export declare const VARIANT_MAP: Record; export declare const DIVIDER_MAP: { dash: string; end: string; start: string; horizontal: string; vertical: string; success: string; info: string; warning: string; error: string; primary: string; secondary: string; accent: string; neutral: string; }; export interface DividerProps extends Omit, "color">, IComponentBaseProps { ref?: Ref; children?: ReactNode; color?: DividerColor; direction?: DividerDirection; placement?: DividerPlacement; variant?: Variant; } export {};