import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow'; /** * StudioMeyer Memory API credentials. * * Two auth modes: * - apiKey: paste a key from the dashboard (simple, fastest path) * - oauth2: browser-based OAuth 2.1 + PKCE flow (no copy-paste, ~30 seconds) * * Both target the same MCP endpoint at memory.studiomeyer.io/mcp. * Self-hosted deployments override `baseUrl` (e.g. https://memory.example.com). */ export declare class StudioMeyerMemoryApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; icon: "file:studiomeyer.svg"; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; }