import { z } from 'zod'; export declare const appOptionsSchema: z.ZodObject<{ apikey: z.ZodString; supaHost: z.ZodOptional; supaAnon: z.ZodOptional; name: z.ZodOptional; icon: z.ZodOptional; retention: z.ZodOptional; exposeMetadata: z.ZodOptional; preview: z.ZodOptional; allowDeviceCustomId: z.ZodOptional; blockProviderInfraRequests: z.ZodOptional; buildTimeoutMinutes: z.ZodOptional; iosStoreUrl: z.ZodOptional; androidStoreUrl: z.ZodOptional; defaultUploadChannel: z.ZodOptional; defaultDownloadChannel: z.ZodOptional; disableDownloadChannels: z.ZodOptional; }, z.core.$strip>; export type AppOptions = z.infer; export declare const appDebugOptionsSchema: z.ZodObject<{ apikey: z.ZodString; supaHost: z.ZodOptional; supaAnon: z.ZodOptional; device: z.ZodOptional; }, z.core.$strip>; export type AppDebugOptions = z.infer; export declare const appSettingOptionsSchema: z.ZodObject<{ apikey: z.ZodString; supaHost: z.ZodOptional; supaAnon: z.ZodOptional; bool: z.ZodOptional; string: z.ZodOptional; }, z.core.$strip>; export type AppSettingOptions = z.infer;