import type { Component, ExtractPropTypes } from 'vue'; import type Result from './result.vue'; export declare const IconMap: { readonly success: "icon-success"; readonly warning: "icon-warning"; readonly error: "icon-error"; readonly info: "icon-info"; }; export declare const IconComponentMap: Record<(typeof IconMap)[keyof typeof IconMap], Component>; export declare const resultProps: { readonly title: import("@inte-cloud/lit-element/es/utils").EpPropFinalized; readonly subTitle: import("@inte-cloud/lit-element/es/utils").EpPropFinalized; readonly icon: import("@inte-cloud/lit-element/es/utils").EpPropFinalized; }; export declare type ResultProps = ExtractPropTypes; export declare type ResultInstance = InstanceType;