import Store from '@mjcloud/redux'; import { ValueInstanceBase } from '@mjcloud/instance'; import { ILabelState, LabelEventType, LabelActionType, ILabelConfig } from './typings'; import { ValidationRuleType } from '@mjcloud/utils/dist/asyncValidator'; declare class Label extends ValueInstanceBase { get valueType(): ValidationRuleType; __createStore(): Store; initialState(initConfig: ILabelConfig): void; format(value?: any, config?: any): string; } export default Label;