import { HedgewiseCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { HedgewiseError } from "../models/errors/hedgewiseerror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.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 available features * * @remarks * Returns the list of all available features that Hedgewise * tracks or produces. Some of these are used to produce our price and * commodity production forecasts. The returned features can be filtered by futures contract symbol they can relate or by the dataset they belong to. */ export declare function featuresList(client: HedgewiseCore, request: operations.GetAvailableFeaturesRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=featuresList.d.ts.map