import { CSSProperties } from 'react'; export declare enum TYPE { HORIZONTAL = "horizontal", VERTICAL = "vertical" } export declare enum VARIANT { SOLID = "solid", DASHED = "dashed", DOTTED = "dotted" } export interface DividerProps { className?: string; style?: CSSProperties; type?: TYPE; color?: string; thickness?: number | string; variant?: VARIANT; gap?: string | null; } /** @INFO Контейнер должен быть d-flex **/ export declare function Divider({ className, style, color, gap, thickness, variant, type, }: DividerProps): JSX.Element;