export type JsonSchema = Record export type CesiumToolLocale = 'en' | 'zh-CN' export interface CesiumToolAnnotations { readOnlyHint?: boolean destructiveHint?: boolean idempotentHint?: boolean openWorldHint?: boolean untrustedContentHint?: boolean } export interface CesiumToolLocalization { description: string parameters: Readonly> } export interface CesiumToolContract { name: string title: string description: string inputSchema: JsonSchema outputSchema: JsonSchema annotations: CesiumToolAnnotations localizations: Readonly> }