import type { Provider } from '@angular/core';
export declare const enum FluentFormFeatureKind {
    UIAdapter = 0,
    StaticExpression = 1,
    SchemaPatcher = 2
}
export interface FluentFormFeature<K extends FluentFormFeatureKind> {
    kind: K;
    providers: Provider[];
}
