import { ApiService } from '../core/ApiService'; export declare class PremiumSupport { private api; constructor(api: ApiService); getDialogs(): any; getDialog(userId: any): any; /** * @param toId if equal to 0 means message to our support team, in other case clientId should be here * @param message * @returns {*} */ post({toId, message}: { toId: any; message: any; }): any; del(id: any): any; }