import { CSSProperties, ReactNode } from 'react'; export declare type Props = { className?: string; dashed?: boolean; position?: string; type?: 'horizontal' | 'vertical'; children?: ReactNode; style?: CSSProperties; }; /** * Компонент Divider * @reactProps {string} className - Пользовательский className css (default : ''); * @reactProps {object} style - css стили Divider. Необходимые параметры width-для горизонтального, height-для вертикального (default : none); * @reactProps {boolean} dashed - вкл/откл путктирной линии на Divider (default : false); * @reactProps{string} position - Позиционирование заголовка. Работает только на горизонтальном Divider и при наличии заголовка (default : 'left'); * @reactProps {string} type - Тип Divider horizontal или vertical (default : 'horizontal'); * @reactProps {string} children - Заголовок для горизонтального типа. Указывается между тегами компонента: Заголовок (default : none); * * */ export declare const Divider: ({ style, children, className, dashed, position, type }: Props) => JSX.Element;