import { UIComponent } from '../utils/ui-component'; export interface FormControlBasicProps { value?: any; defaultValue?: any; } export default class FormControlBasic

extends UIComponent { isControl: boolean; value: any; stateValueMark: string; constructor(props: any); getValue: (stateValueMark?: string) => any; }