import type { FacebookConfig } from './config.js'; export interface FacebookPage { id: string; name: string; category?: string; followers_count?: number; fan_count?: number; } export interface PostResult { id: string; permalink?: string; } export declare function getPage(cfg: FacebookConfig): Promise; export declare function postPhoto(cfg: FacebookConfig, imageUrl: string, caption: string): Promise; export declare function postMultiPhoto(cfg: FacebookConfig, imageUrls: string[], caption: string): Promise; export declare function listAccessiblePages(userAccessToken: string): Promise;