import { Service } from '../../Service';
export declare class ComponentService extends Service {
    /**
     * @deprecated Use method create
     * @param address address
     */
    static get(address: string): Promise<ComponentService>;
    static create(address: string): Promise<ComponentService>;
    name(): Promise<string>;
    version(): Promise<string>;
    description(): Promise<string>;
    owner(): Promise<string>;
    componentList(): Promise<string>;
}
