import type { ThingDDriver, ThingdMcpAuditOptions } from "@thingd/sdk"; export type ThingDStorageDriver = Exclude; export type HttpRuntimeSafetyOptions = { host: string; authToken?: string; allowUnauthenticated?: boolean; }; export declare function parseThingdDriver(value: string | undefined): ThingDStorageDriver | undefined; export declare function parsePort(value: string | undefined, fallback: number): number; export declare function parseBooleanFlag(value: string | undefined, name: string): boolean; export declare function readMcpAuditOptionsFromEnv(env: Record): ThingdMcpAuditOptions | false; export declare function readCliValue(args: string[], index: number, name: string): string; export declare function ensureHttpRuntimeIsSafe(options: HttpRuntimeSafetyOptions): void; //# sourceMappingURL=config.d.ts.map