export declare const ERR_STUDIO_NOT_CONNECTED: string;
export interface StudioProjectInfo {
    name: string;
    path: string;
    locationHash: string;
}
export declare function exportProjectModel(projectLocationHash: string, dest: string, port?: number): Promise<any>;
export declare function getOpenedCubaProjects(port?: number): Promise<StudioProjectInfo[] | null>;
export declare function normalizeSecret(restClientSecret: string): string;
