import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; /** * fc-title标题 * * 描述一段文字或内容的文字。 * * 需要描述一段文字或内容的标题。 * */ export declare class FctitleComponent extends FcinputComponent { provider: ProvidersService; /** 图标 */ fcIcon: string; /** 标题 */ fcLabel: string; /** 副标题 */ fcSubtitle: string; /** 是否有左侧竖条 */ fcHasLine: string; _hasLine: boolean; /** 是否有下边框 */ fcBorder: string; /** 布局 */ fcLayout: string; /** 宽度 */ fcWidth: string; constructor(provider: ProvidersService); ngOnChanges(param: any): void; _afterParentInit(): void; } export declare const TitleLayout: { LEFT: string; CENTER: string; RIGHT: string; }; export declare const TitleBorder: { TOP: string; BOTTOM: string; NULL: string; }; export interface fcsubtitleOption { label?: string; content?: string; }