import { NovuCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { NovuError } from "../models/errors/novuerror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * List all contexts * * @remarks * Retrieve a paginated list of all contexts, optionally filtered by type and key pattern. * **type** and **id** are optional fields, if provided, only contexts with the matching type and id will be returned. * **search** is an optional field, if provided, only contexts with the matching key pattern will be returned. * Checkout all possible parameters in the query section below for more details */ export declare function contextsList(client: NovuCore, request: operations.ContextsControllerListContextsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=contextsList.d.ts.map