import { z } from '@struktoai/mirage-core/resource/secrets'; import type { ConfigOf } from '@struktoai/mirage-core/resource/secrets'; /** * What an `hf` install is configured with. * * An account CLI, so it declares this and reaches the Hub directly; it * consults no mount. The token is optional because the Hub serves every * public repository anonymously, and the verbs that need one (`auth whoami`, * anything that writes) say so when it is missing rather than failing at the * transport. */ export declare const HfConfigSchema: z.ZodObject<{ token: z.ZodOptional; endpoint: z.ZodDefault; }, z.core.$strip>; export type HfConfig = ConfigOf; export declare function hfEndpoint(config: HfConfig): string; //# sourceMappingURL=config.d.ts.map