export type InfoFile = {
    filename: string;
    content: string;
    type: 'jdl' | 'yo-rc' | 'entity-jdl' | 'json';
};
export type InfoData = {
    yoRcContent: string | undefined;
    jdlDefinitions: string | undefined;
    jdlApplications: number | undefined;
    jdlEntitiesDefinitions: string | undefined;
    yoRcBlank: boolean;
    yoRcValid: boolean;
    files: InfoFile[];
    workspacesFolders: string[] | undefined;
};
export declare const extractDataFromInfo: (info: string) => InfoData;
