import { FeaturesLocalization, OmniaTheming, VueComponentBase } from "../.."; import { GuidValue } from "../../../models"; export interface IFeatureHomeBladeProps { appInstanceId?: GuidValue; handleClose: () => void; handleFeatureAction: (action: string, featureId: GuidValue) => void; targetResolverType: string; } export declare class FeatureHomeBlade extends VueComponentBase { appInstanceId?: GuidValue; handleClose: () => void; handleFeatureAction: (action: string, featureId: GuidValue) => void; targetResolverType: string; loc: FeaturesLocalization.locInterface; omniaTheming: OmniaTheming; private key; created(): void; render(): VueTsxSupport.JSX.Element; }