import { StyleProps, VueNode } from "../typings"; export interface AppIconProps extends StyleProps { /** * @description 类别(即类名称前缀,不含“-”) * @default icon */ category?: string; /** * @description 图标名称 */ icon?: VueNode; } declare const _default: (import("vue").FunctionalComponent> & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; } & ((app: import("vue").App, ...options: any[]) => any) & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; }) | (import("vue").FunctionalComponent> & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; } & { install: (app: import("vue").App, ...options: any[]) => any; }); export default _default;