import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class Answers extends ClientSDK { /** * Create Answer * * @remarks * Create a user-generated Answer that contains a question and answer. */ create(createAnswerRequest: components.CreateAnswerRequest, locale?: string | undefined, options?: RequestOptions): Promise; /** * Delete Answer * * @remarks * Delete an existing user-generated Answer. */ delete(deleteAnswerRequest: components.DeleteAnswerRequest, locale?: string | undefined, options?: RequestOptions): Promise; /** * Update Answer * * @remarks * Update an existing user-generated Answer. */ update(editAnswerRequest: components.EditAnswerRequest, locale?: string | undefined, options?: RequestOptions): Promise; /** * Read Answer * * @remarks * Read the details of a particular Answer given its ID. */ retrieve(getAnswerRequest: components.GetAnswerRequest, locale?: string | undefined, options?: RequestOptions): Promise; /** * List Answers * * @remarks * List Answers created by the current user. * * @deprecated method: Deprecated on 2026-01-21, removal scheduled for 2026-10-15: Answer boards have been removed and this endpoint no longer serves a purpose. */ list(listAnswersRequest: components.ListAnswersRequest, locale?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=answers.d.ts.map