import { Types } from 'mongoose'; interface IEberConfig { enable: boolean; XMAPIKey: string; } export declare class EberConfig { enable: boolean; XMApiKey: string; } export declare class MarketingSettings { get id(): string; _id: Types.ObjectId; restaurant: Types.ObjectId; eberConfig: IEberConfig; } export {};