export declare class ProductInfo {
    workbench: string;
    productType: string;
    productVersion: string;
    sesame: string;
    connectors: string;
    constructor(data: Partial<ProductInfo & {
        Workbench: string;
    }>);
}
