import { ObjectBasicInfo } from '@canner/canner-storage';
export declare const vulcanFolderPathPattern: RegExp;
export declare const indicatorPathPattern: RegExp;
/**
 * Get the indicator files path of each workspaces
 * @param filesInfo files info from storage service
 * @returns the indicator files path of each workspaces
 */
export declare const getIndicatorFilesOfWorkspaces: (filesInfo: ObjectBasicInfo[]) => Promise<{
    name: string;
    workspaceId: string;
}[]>;
