import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; /** * fc-line线条 * * 区隔内容的分割线。 * * 对不同章节的文本段落进行分割。 * * 对行内文字/链接进行分割,例如表格的操作列。 * */ export declare class FclineComponent extends FcinputComponent { provider: ProvidersService; /** 默认标题方向 horizontal vertical*/ fcDirection: string; /** 虚线*/ fcDashed: string; _dashed: boolean; /** 文字*/ fcLabel: string; /** 文字位置*/ fcPosition: string; /** 左侧图标*/ fcLeftIcon: string; _leftIcon: boolean; /** 右侧图标*/ fcRightIcon: string; _rightIcon: boolean; /**图标*/ fcIcon: string; constructor(provider: ProvidersService); _afterParentInit(): void; }