import type { DocumentType, IDVCConfig, IWebLibDocument } from '../@types/Data';
export declare const createGuid: () => string;
/**
 * 1. Filter Active DocumentTypes
 * 2. Filter Steps that have at least one active mode
 * */
export declare const getFilteredDocumentTypes: (documentTypes: IWebLibDocument[]) => DocumentType[];
export declare const prepareDocumentTypes: (config: IDVCConfig) => DocumentType[];
export declare const getQueryParam: (param: string) => string | null;
