import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; /** * fc-double数值 * * 通过鼠标或键盘,输入范围内的数值。 * * 当需要获取标准数值时。 * */ export declare class FcdoubleComponent extends FcinputComponent { provider: ProvidersService; /** 最大值*/ fcMaxValue: string; _maxValue: number; /** 最小值*/ fcMinValue: string; _minValue: number; /** 步数*/ fcStep: number; /**格式化*/ fcFormat: string; /**精度*/ fcPrecision: number; constructor(provider: ProvidersService); _afterParentInit(): void; }