/**
 * @module Component
 * @description 注册服组件型的bean到Ioc容器中
 */
declare class Component {
    /**
     * bean名称
     */
    value?: string;
}
declare const _default: {
    (target: Function): any;
    (options: string | import("../../servlets/annotations/Target").CreateOptions<typeof Component>): ClassDecorator;
} & import("../../servlets/annotations/annotation/type").LinkAnnotationType<typeof Component> & typeof Component;
export default _default;
