import { ISchedule } from "../Schedules/Schedules"; export declare class MercadoLibreConfig { token?: string | ''; reassign?: boolean; reassignTime?: number; reassignGroupId?: string; autoResponseBusinessHours?: boolean; autoResponseOutOfBusinessHours?: boolean; autoResponseHoliday?: boolean; autoResponseBusinessHoursMessage?: string | ''; autoResponseOutOfBusinessHoursMessage?: string | ''; autoResponseHolidayMessage?: string | ''; mlAccount?: MercadoLibreConfigAccount | null; mlUserId: string; mlAccessToken: string; mlAccessTokenExpiration: Date; mlRefreshToken: string; mlRefreshTokenExpiration: Date; scheduleId?: string | null; schedule?: ISchedule | null; } export declare class MercadoLibreConfigAccount { name: string; email: string; imageUrl: string; phone: string; }