/** * This is auto-generated file, don't modify this file manually */ export declare const NotificationsSendMessageErrorCodeEnumNames: { readonly NOTIFICATIONS_DISABLED: 1; readonly FLOOD_CONTROL_PER_HOUR: 2; readonly FLOOD_CONTROL_PER_DAY: 3; readonly APP_IS_NOT_INSTALLED: 4; }; export interface NotificationsSendMessageError { /** * Error code * * `1` — notifications disabled * `2` — flood control per hour * `3` — flood control per day * `4` — app is not installed */ code?: 1 | 2 | 3 | 4; /** * Error description */ description?: string; }