import { OnInit, Type } from "@angular/core";
import { OUIIonElement } from '../oui-element';
import { OUIAbstractIonParser } from '../oui-parser';
export declare class OUIIonTextComponent extends OUIIonElement {
}
export declare class OUIIonTextParser extends OUIAbstractIonParser {
    type: string;
    componentType: Type<OUIIonElement>;
}
export declare class OUIIonDynamicTextComponent extends OUIIonElement implements OnInit {
    text: string;
    ngOnInit(): void;
}
export declare class OUIIonDynamicTextParser extends OUIAbstractIonParser {
    type: string;
    componentType: Type<OUIIonElement>;
}
