declare const KeysAPI: { getKeys: (projectId: string) => Promise; createKey: (options: { projectId: string; name: string; defaultLanguageTranslation?: string | undefined; description: string; langTranslations?: { [langCode: string]: string; } | undefined; }) => Promise; update: (projectId: string, keyId: string, name: string, description: string) => Promise; deleteKeys: (projectId: string, keys: any) => Promise; }; export { KeysAPI };