export declare class UserIssueNotificationsConfig { id: number; clientId: number; userId: Buffer; issueTypeId: number; /** * Per-user push notification opt-out for the issue type identified by * `issueTypeId`. Sparse: no row means push is enabled. Turning this off only * stops pushes for this user — detection and the issues feed are unaffected, * and other users on the account keep receiving the push. */ pushNotification: boolean; createdAt: Date; modifiedAt: Date; }