import type { CapacitorConfig } from './schemas/config';
export interface CapacitorCliConfig {
    app: {
        extConfig: CapacitorConfig;
        extConfigFilePath: string;
    };
}
export declare const loadConfig: () => Promise<CapacitorCliConfig>;
export declare const writeConfig: (extConfig: CapacitorConfig, extConfigFilePath: string) => Promise<void>;
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;
