import { FormControl } from '@angular/forms';
import { FormProperty } from './form-property';
import { Schema } from '../schema';
declare const GenericProperty_base: typeof FormControl & (new (...args: any[]) => FormProperty);
export declare class GenericProperty extends GenericProperty_base {
    constructor(path: string, schema: Schema);
    _updateValue(): void;
}
