import type { SocialConfigOptions } from '../social/profile-store.js'; export interface ConnectResult { ok: boolean; /** 사용자에게 그대로 보여줄 메시지 (MCP 는 content 로 감싸고, CLI 는 그대로 출력). */ text: string; } export declare function connectFacebook(pageAccessToken: string, pageId?: string, options?: SocialConfigOptions): Promise;