import { type DefaultMcpIntegration } from "./mcp-integration-catalog.js"; import { type CreateMcpServerArgs, type McpServerScope } from "./use-mcp-servers.js"; export interface McpIntegrationDialogProps { open: boolean; onOpenChange: (open: boolean) => void; initialIntegrationId?: string | null; defaultScope: McpServerScope; canCreateOrgMcp: boolean; hasOrg: boolean; onCreateMcpServer: (args: CreateMcpServerArgs) => Promise; onCreated?: () => void; integrations?: DefaultMcpIntegration[]; } export declare function McpIntegrationDialog({ open, onOpenChange, initialIntegrationId, defaultScope, canCreateOrgMcp, hasOrg, onCreateMcpServer, onCreated, integrations, }: McpIntegrationDialogProps): import("react").JSX.Element | null; //# sourceMappingURL=McpIntegrationDialog.d.ts.map