/** * @purpose Extract the model id from a raw OpenCode model JSON string. * @param raw The model JSON string or null. * @returns The extracted model id, 'unknown' on parse failure, undefined for null input. */ export declare function parseModelJson(raw: string | null): string | undefined;