import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; /** * fc-long整数 * * 通过鼠标或键盘,输入范围内的整数值。 * * 通过鼠标或键盘,输入范围内的整数值。 * */ export declare class FclongComponent extends FcinputComponent { provider: ProvidersService; /** 最大值*/ fcMaxValue: string; _maxValue: number; /** 最小值*/ fcMinValue: string; _minValue: number; /** 步数*/ fcStep: number; /**前缀格式化*/ fcFormatBefore: string; /**后缀格式化*/ fcFormatAfter: string; constructor(provider: ProvidersService); _afterParentInit(): void; }