import { AxiosInstance } from "axios"; import { Template, TemplateCreateParams, TemplateUpdateParams } from "../../../types/api/templates"; export default class TemplatesApi { private client; private templatesURL; constructor(client: AxiosInstance, accountId: number); /** * Get a list of all templates. */ getList(): Promise; /** * Get a specific template by ID. */ get(templateId: number): Promise