import { z } from 'zod'; export declare const capacitorConfigSchema: z.ZodObject<{ appId: z.ZodString; appName: z.ZodString; webDir: z.ZodString; plugins: z.ZodOptional>; android: z.ZodOptional>; }, z.core.$loose>; export type CapacitorConfig = z.infer; export declare const extConfigPairsSchema: z.ZodObject<{ config: z.ZodObject<{ appId: z.ZodString; appName: z.ZodString; webDir: z.ZodString; plugins: z.ZodOptional>; android: z.ZodOptional>; }, z.core.$loose>; path: z.ZodString; }, z.core.$strip>; export type ExtConfigPairs = z.infer;