UNPKG

@posthog/wizard

Version:

The PostHog wizard helps you to configure your project

16 lines (15 loc) 813 B
import type { Integration } from '../../lib/constants'; import { MCPClient } from './MCPClient'; import type { CloudRegion } from '../../utils/types'; export declare const getSupportedClients: () => Promise<MCPClient[]>; export declare const addMCPServerToClientsStep: ({ integration, cloudRegion, askPermission, }: { integration?: Integration; cloudRegion?: CloudRegion; askPermission?: boolean; }) => Promise<string[]>; export declare const removeMCPServerFromClientsStep: ({ integration, }: { integration?: Integration; }) => Promise<string[]>; export declare const getInstalledClients: () => Promise<MCPClient[]>; export declare const addMCPServer: (clients: MCPClient[], personalApiKey: string) => Promise<void>; export declare const removeMCPServer: (clients: MCPClient[]) => Promise<void>;