import type { CameraUiBuildOptions } from '../types.js'; type ProjectType = 'javascript-cjs' | 'javascript-esm' | 'typescript-cjs' | 'typescript-esm'; export declare function detectJsProjectType(rootDir: string): Promise; export declare function loadConfig(): Promise; export interface ParsedConfig { userConfig: CameraUiBuildOptions; projectType: ProjectType; targetRootDir: string; entryPoint: string; outputFile: string; } export declare function parseConfig(): Promise; export {};