import React from 'react'; import { IBaseElement, IPropsAny, IValueBreakpoints } from '../types'; export type TLineAlign = 'inherit' | 'initial' | 'flex-start' | 'center' | 'flex-end' | 'baseline' | 'stretch' | 'unset'; export type TLineJustify = 'inherit' | 'initial' | 'flex-start' | 'center' | 'flex-end' | 'space-around' | 'space-between' | 'space-evenly' | 'unset'; export type TLineDirection = 'inherit' | 'row' | 'row-reverse' | 'column' | 'column-reverse'; export type TLineWrap = 'inherit' | 'wrap' | 'nowrap' | 'wrap-reverse'; export type TLineDisplay = 'inherit' | 'flex' | 'inline-flex'; export interface ILine extends IBaseElement { display?: TLineDisplay | Partial>; direction?: TLineDirection | Partial>; align?: TLineAlign | Partial>; justify?: TLineJustify | Partial>; wrap?: TLineWrap | Partial>; flex?: boolean | Partial>; flexNo?: boolean | Partial>; gap?: string | number | Partial>; rowGap?: string | number | Partial>; columnGap?: string | number | Partial>; fullWidth?: boolean | Partial>; divider?: boolean | Partial>; DividerProps?: IPropsAny; } declare const Line: React.FC; export default Line;