import { IWebComponentInstance } from "../../..";
import { ITestFeaturesComponent } from "./ITestFeaturesComponent";
import { OmniaTheming } from "../..";
import { FeatureStore } from "../../../stores";
import { VueComponentBase } from "../../VueComponentBase";
interface ITestFeatures {
    title: string;
    description: string;
}
export declare class TestFeaturesComponent extends VueComponentBase implements IWebComponentInstance, ITestFeaturesComponent {
    onValueChanged: (properties: any) => void;
    valueBind: ITestFeatures;
    private omniaUxLoc;
    omniaTheming: OmniaTheming;
    featureStore: FeatureStore;
    mounted(): void;
    beforeDestroy(): void;
    created(): void;
    render(): VueTsxSupport.JSX.Element;
}
export {};
