import { z } from "zod"; export type Environment = "staging" | "production"; declare const ConfigSchema: z.ZodObject<{ auth: z.ZodOptional; access_token: z.ZodOptional; }, z.core.$strip>>; production: z.ZodOptional; access_token: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>; hub: z.ZodOptional; }, z.core.$strip>>; production: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>; }, z.core.$strip>; export type Config = z.infer; export declare function save(config: Config): Promise; export declare function load(): Promise; export declare function update(updates: Partial): Promise; export {};