import { z } from "zod"; declare const SettingsSchema: z.ZodObject<{ publicProjectId: z.ZodString; remoteFileBuckets: z.ZodArray>; }, z.core.$strip>; type Settings = z.infer; export declare function getSettings(projectName: string, auth: { pat: string; } | { apiKey: string; }, /** Overrides {@link defaultHost}. See the note there for why this exists. */ contentUrl?: string): Promise<{ success: true; data: Settings; } | { success: false; message: string; }>; export {};