import { type FromSchema } from 'json-schema-to-ts'; import { type IterablePromise } from '../../client/method.js'; import { Resource } from '../../client/resource.js'; import { type RequestOptions } from '../../client/types.js'; import * as schemas from '../../schemas/users/notifications.js'; type ListUsersNotificationsResponse = FromSchema; type ListUsersNotificationsPayload = FromSchema; export declare class UsersNotifications extends Resource { path: string; entity: string; /** * Fetch the notifications and deliveries for a user. * * @param userId - The user id is the MagicBell user id. Accepts a UUID * @param options - override client request options. * @returns **/ list(userId: string, options?: RequestOptions): IterablePromise; /** * Fetch the notifications and deliveries for a user. * * @param userId - The user id is the MagicBell user id. Accepts a UUID * @param data * @param options - override client request options. * @returns **/ list(userId: string, data: ListUsersNotificationsPayload, options?: RequestOptions): IterablePromise; } export {};