import type { IntegrationAddResult, IntegrationsPanelState } from '../../../types/integrationsPanel'; type AddOptions = { install?: boolean; override?: string; }; export declare const resolveIntegrationsState: (cwd: string, override?: string) => IntegrationsPanelState; export declare const addIntegration: (cwd: string, id: string, options?: AddOptions) => IntegrationAddResult; export {};