import { FC } from 'react'; export interface DividerLineProps { /** * Высота разделителя в пикселях * * @default 1 */ size?: number; /** * Цвет разделителя */ color?: string; } export declare const DividerLine: FC;