import type { ManifestSchema, ProjectPluginConfig } from '@ones-open/cli-utils'; import type { ListrTask } from 'listr'; declare function cleanProjectDistDirs(currentWorkingDirectory?: string): Promise; declare function checkFileDependenciesBeforeProjectPackUp(currentWorkingDirectory?: string): Promise; declare function buildOpkFile(outputFileName: string, extraFilePaths?: string[], currentWorkingDirectory?: string): Promise; declare function getPluginProjectPackUpTasks(fileName?: string, isReleaseVersion?: boolean): ListrTask<{ extraFilePaths: string[]; pluginConfig: ProjectPluginConfig; opkFileName: string; manifest: { content: ManifestSchema; filePath: string; }; }>[]; export * from './backend'; export * from './frontend'; export { buildOpkFile, cleanProjectDistDirs, checkFileDependenciesBeforeProjectPackUp, getPluginProjectPackUpTasks, }; //# sourceMappingURL=index.d.ts.map