import { z } from "zod"; export declare const createAppSpecsSchema: z.ZodObject<{ body: z.ZodObject<{ appName: z.ZodString; appShortName: z.ZodOptional>; appDescription: z.ZodOptional>; appDefaultLanguage: z.ZodDefault; appSupportedLanguages: z.ZodDefault>; privacyPolicy: z.ZodOptional>; privacyPolicyVersion: z.ZodOptional>; termsAndConditions: z.ZodOptional>; termsAndConditionsVersion: z.ZodOptional>; aboutUs: z.ZodOptional>; enableRiderAccess: z.ZodDefault; enablePassengerAccess: z.ZodDefault; enableAgentAccess: z.ZodDefault; enableAdminAccess: z.ZodDefault; enableCashPayment: z.ZodDefault; enableMomoPayPayment: z.ZodDefault; enableAirtelMoneyPayment: z.ZodDefault; facebookUrl: z.ZodOptional>; twitterUrl: z.ZodOptional>; instagramUrl: z.ZodOptional>; linkedinUrl: z.ZodOptional>; youtubeUrl: z.ZodOptional>; websiteUrl: z.ZodOptional>; supportEmail: z.ZodOptional>; supportPhone: z.ZodOptional>; companyName: z.ZodOptional>; companyAddress: z.ZodOptional>; companyEmail: z.ZodOptional>; companyPhone: z.ZodOptional>; companyTaxId: z.ZodOptional>; isUnderMaintenance: z.ZodDefault; maintenanceMessage: z.ZodOptional>; maintenanceStartAt: z.ZodOptional>; maintenanceEndAt: z.ZodOptional>; }, "strip", z.ZodTypeAny, { appName: string; appDefaultLanguage: string; appSupportedLanguages: string[]; enableRiderAccess: boolean; enablePassengerAccess: boolean; enableAgentAccess: boolean; enableAdminAccess: boolean; enableCashPayment: boolean; enableMomoPayPayment: boolean; enableAirtelMoneyPayment: boolean; isUnderMaintenance: boolean; appShortName?: string | null | undefined; appDescription?: string | null | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }, { appName: string; appShortName?: string | null | undefined; appDescription?: string | null | undefined; appDefaultLanguage?: string | undefined; appSupportedLanguages?: string[] | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; enableRiderAccess?: boolean | undefined; enablePassengerAccess?: boolean | undefined; enableAgentAccess?: boolean | undefined; enableAdminAccess?: boolean | undefined; enableCashPayment?: boolean | undefined; enableMomoPayPayment?: boolean | undefined; enableAirtelMoneyPayment?: boolean | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; isUnderMaintenance?: boolean | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }>; }, "strip", z.ZodTypeAny, { body: { appName: string; appDefaultLanguage: string; appSupportedLanguages: string[]; enableRiderAccess: boolean; enablePassengerAccess: boolean; enableAgentAccess: boolean; enableAdminAccess: boolean; enableCashPayment: boolean; enableMomoPayPayment: boolean; enableAirtelMoneyPayment: boolean; isUnderMaintenance: boolean; appShortName?: string | null | undefined; appDescription?: string | null | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }; }, { body: { appName: string; appShortName?: string | null | undefined; appDescription?: string | null | undefined; appDefaultLanguage?: string | undefined; appSupportedLanguages?: string[] | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; enableRiderAccess?: boolean | undefined; enablePassengerAccess?: boolean | undefined; enableAgentAccess?: boolean | undefined; enableAdminAccess?: boolean | undefined; enableCashPayment?: boolean | undefined; enableMomoPayPayment?: boolean | undefined; enableAirtelMoneyPayment?: boolean | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; isUnderMaintenance?: boolean | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }; }>; export declare const updateAppSpecsSchema: z.ZodObject<{ params: z.ZodObject<{ id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; }, { id: string; }>; body: z.ZodObject<{ appName: z.ZodOptional; appShortName: z.ZodOptional>>; appDescription: z.ZodOptional>>; appDefaultLanguage: z.ZodOptional>; appSupportedLanguages: z.ZodOptional>>; privacyPolicy: z.ZodOptional>>; privacyPolicyVersion: z.ZodOptional>>; termsAndConditions: z.ZodOptional>>; termsAndConditionsVersion: z.ZodOptional>>; aboutUs: z.ZodOptional>>; enableRiderAccess: z.ZodOptional>; enablePassengerAccess: z.ZodOptional>; enableAgentAccess: z.ZodOptional>; enableAdminAccess: z.ZodOptional>; enableCashPayment: z.ZodOptional>; enableMomoPayPayment: z.ZodOptional>; enableAirtelMoneyPayment: z.ZodOptional>; facebookUrl: z.ZodOptional>>; twitterUrl: z.ZodOptional>>; instagramUrl: z.ZodOptional>>; linkedinUrl: z.ZodOptional>>; youtubeUrl: z.ZodOptional>>; websiteUrl: z.ZodOptional>>; supportEmail: z.ZodOptional>>; supportPhone: z.ZodOptional>>; companyName: z.ZodOptional>>; companyAddress: z.ZodOptional>>; companyEmail: z.ZodOptional>>; companyPhone: z.ZodOptional>>; companyTaxId: z.ZodOptional>>; isUnderMaintenance: z.ZodOptional>; maintenanceMessage: z.ZodOptional>>; maintenanceStartAt: z.ZodOptional>>; maintenanceEndAt: z.ZodOptional>>; }, "strip", z.ZodTypeAny, { appName?: string | undefined; appShortName?: string | null | undefined; appDescription?: string | null | undefined; appDefaultLanguage?: string | undefined; appSupportedLanguages?: string[] | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; enableRiderAccess?: boolean | undefined; enablePassengerAccess?: boolean | undefined; enableAgentAccess?: boolean | undefined; enableAdminAccess?: boolean | undefined; enableCashPayment?: boolean | undefined; enableMomoPayPayment?: boolean | undefined; enableAirtelMoneyPayment?: boolean | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; isUnderMaintenance?: boolean | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }, { appName?: string | undefined; appShortName?: string | null | undefined; appDescription?: string | null | undefined; appDefaultLanguage?: string | undefined; appSupportedLanguages?: string[] | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; enableRiderAccess?: boolean | undefined; enablePassengerAccess?: boolean | undefined; enableAgentAccess?: boolean | undefined; enableAdminAccess?: boolean | undefined; enableCashPayment?: boolean | undefined; enableMomoPayPayment?: boolean | undefined; enableAirtelMoneyPayment?: boolean | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; isUnderMaintenance?: boolean | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }>; }, "strip", z.ZodTypeAny, { body: { appName?: string | undefined; appShortName?: string | null | undefined; appDescription?: string | null | undefined; appDefaultLanguage?: string | undefined; appSupportedLanguages?: string[] | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; enableRiderAccess?: boolean | undefined; enablePassengerAccess?: boolean | undefined; enableAgentAccess?: boolean | undefined; enableAdminAccess?: boolean | undefined; enableCashPayment?: boolean | undefined; enableMomoPayPayment?: boolean | undefined; enableAirtelMoneyPayment?: boolean | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; isUnderMaintenance?: boolean | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }; params: { id: string; }; }, { body: { appName?: string | undefined; appShortName?: string | null | undefined; appDescription?: string | null | undefined; appDefaultLanguage?: string | undefined; appSupportedLanguages?: string[] | undefined; privacyPolicy?: string | null | undefined; privacyPolicyVersion?: string | null | undefined; termsAndConditions?: string | null | undefined; termsAndConditionsVersion?: string | null | undefined; aboutUs?: string | null | undefined; enableRiderAccess?: boolean | undefined; enablePassengerAccess?: boolean | undefined; enableAgentAccess?: boolean | undefined; enableAdminAccess?: boolean | undefined; enableCashPayment?: boolean | undefined; enableMomoPayPayment?: boolean | undefined; enableAirtelMoneyPayment?: boolean | undefined; facebookUrl?: string | null | undefined; twitterUrl?: string | null | undefined; instagramUrl?: string | null | undefined; linkedinUrl?: string | null | undefined; youtubeUrl?: string | null | undefined; websiteUrl?: string | null | undefined; supportEmail?: string | null | undefined; supportPhone?: string | null | undefined; companyName?: string | null | undefined; companyAddress?: string | null | undefined; companyEmail?: string | null | undefined; companyPhone?: string | null | undefined; companyTaxId?: string | null | undefined; isUnderMaintenance?: boolean | undefined; maintenanceMessage?: string | null | undefined; maintenanceStartAt?: string | null | undefined; maintenanceEndAt?: string | null | undefined; }; params: { id: string; }; }>; export declare const listAppSpecsSchema: z.ZodObject<{ query: z.ZodObject<{ page: z.ZodPipeline, number, string | undefined>, z.ZodNumber>; limit: z.ZodPipeline, number, string | undefined>, z.ZodNumber>; isActive: z.ZodOptional>; search: z.ZodOptional; sortBy: z.ZodOptional>; sortOrder: z.ZodOptional>; }, "strip", z.ZodTypeAny, { limit: number; page: number; search?: string | undefined; isActive?: "true" | "false" | undefined; sortBy?: "createdAt" | "updatedAt" | "version" | undefined; sortOrder?: "DESC" | "ASC" | undefined; }, { search?: string | undefined; limit?: string | undefined; isActive?: "true" | "false" | undefined; page?: string | undefined; sortBy?: "createdAt" | "updatedAt" | "version" | undefined; sortOrder?: "DESC" | "ASC" | undefined; }>; }, "strip", z.ZodTypeAny, { query: { limit: number; page: number; search?: string | undefined; isActive?: "true" | "false" | undefined; sortBy?: "createdAt" | "updatedAt" | "version" | undefined; sortOrder?: "DESC" | "ASC" | undefined; }; }, { query: { search?: string | undefined; limit?: string | undefined; isActive?: "true" | "false" | undefined; page?: string | undefined; sortBy?: "createdAt" | "updatedAt" | "version" | undefined; sortOrder?: "DESC" | "ASC" | undefined; }; }>; export declare const getAppSpecsSchema: z.ZodObject<{ params: z.ZodObject<{ id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; }, { id: string; }>; }, "strip", z.ZodTypeAny, { params: { id: string; }; }, { params: { id: string; }; }>; export declare const activateAppSpecsSchema: z.ZodObject<{ params: z.ZodObject<{ id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; }, { id: string; }>; }, "strip", z.ZodTypeAny, { params: { id: string; }; }, { params: { id: string; }; }>; export declare const getActiveAppSpecsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;