import { type Volatile } from '@deepseek-ai/cosmokit'; import type z from 'schemastery'; import { type Config } from './config.ts'; /** DSH keeps these references stable while committing live profile edits. */ export type LiveHostConfig = { [Key in keyof Config]-?: Key extends 'remoteAccess' ? Config[Key] : Volatile; }; /** Read a detached configuration snapshot from either DSH generation. */ export declare function plainHostConfig(value?: unknown): Config; /** Profile Config for live forms; transport authority retains normal remounts. */ export declare const LiveConfig: z;