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; export declare const resultProps: { readonly title: import("@element-plus-next/vue-utils").EpPropFinalized; readonly subTitle: import("@element-plus-next/vue-utils").EpPropFinalized; readonly icon: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare type ResultProps = ExtractPropTypes; export declare type ResultInstance = InstanceType;