export declare function getDescription(name: string): Promise<string | undefined>;
export declare type Descriptions = {
    [name: string]: string | undefined;
};
export declare function getDescriptions(names: string[]): Promise<Descriptions>;
