import type { App, Component } from 'vue'; export declare const Prefix = "devops"; export type WithInstall = T & { install(app: App): void; }; export declare function withInstall(component: T): WithInstall; export declare function getPrefixCls(componentName?: string): string;