import { OnInit, Type } from "@angular/core";
import { OUIIonElement } from "../oui-element";
import { OUIAbstractIonParser } from "../oui-parser";
export declare class OUIIonFutureViewComponent extends OUIIonElement implements OnInit {
    state: string;
    list: any[];
    constructor();
    ngOnInit(): void;
    _loadData(): Promise<void>;
    get deepStyle(): {
        height: string;
    };
}
export declare class OUIIonFutureViewComponentParser extends OUIAbstractIonParser {
    type: string;
    componentType: Type<OUIIonElement>;
}
