interface SetRequest { rejectCall?: boolean; msgCall?: string; groupsIgnore: boolean; alwaysOnline: boolean; readMessages: boolean; readStatus: boolean; syncFullHistory: boolean; wavoipToken?: string; } interface SetResponse { message: string; } type SetOptions = SetRequest; export type { SetOptions, SetRequest, SetResponse };