import { ComponentInterface } from '../../stencil-public-runtime'; export declare class ContextMenuIcon implements ComponentInterface { /** * 图标路径 * * @author chitanda * @date 2022-03-22 14:03:47 * @type {string} */ icon: string; watchIcon(): void; /** * 图标模式 * * @author chitanda * @date 2022-03-22 14:03:41 * @type {('svg' | 'img')} */ iconMode: 'svg' | 'img'; /** * 组件加载完毕之前 * * @author chitanda * @date 2022-03-22 14:03:55 */ componentWillLoad(): void; /** * 更新图标模式 * * @author chitanda * @date 2022-03-22 14:03:07 */ updateIconMode(): void; render(): any; }