import { Type } from '@angular/core';
import { OrchestratorDynamicComponentType } from '../types';
export interface DynamicComponentOptions<C> {
    config: Type<C>;
}
export declare function DynamicComponent<C>(options: DynamicComponentOptions<C>): ClassDecorator;
export declare function getDynamicComponentMeta<C>(type: OrchestratorDynamicComponentType<C>): DynamicComponentOptions<C> | undefined;
