import type { CapacitorConfig } from './schemas/config'; export interface CapacitorCliConfig { app: { extConfig: CapacitorConfig; extConfigFilePath: string; }; } export declare const loadConfig: () => Promise; export declare const writeConfig: (extConfig: CapacitorConfig, extConfigFilePath: string) => Promise; export declare const findMonorepoRoot: (currentPath: string) => string; export declare const findNXMonorepoRoot: (currentPath: string) => string; export declare const isMonorepo: (currentPath: string) => boolean; export declare const isNXMonorepo: (currentPath: string) => boolean;