﻿export interface PageConfig {
    openaiApiKey?: string;
    openaiModel?: string;
    openaiEmbeddingModel?: string;
    language?: string;
    promptTemplate?: string;
}
export interface Page extends PageConfig {
    _id: string;
    userId: string;
    pageId: string;
    pageName: string;
    accessToken: string;
    webhookSecret: string;
    webhookVerifyToken: string;
    createdAt: string;
}
//# sourceMappingURL=page.d.ts.map