/**
 * --------------------------------------------------------------------------
 * NJ : AbstractFormControl.ts
 * --------------------------------------------------------------------------
 */
import AbstractFormBaseInput from './abstract-form-base-input';
export default abstract class AbstractFormControl extends AbstractFormBaseInput {
    protected static readonly DEFAULT_OPTIONS: any;
    constructor(component: any, element: HTMLElement, options?: {});
    dispose(): void;
}
