import { HttpClientService } from '../core/http-client.service'; import { EmailTemplate } from '../types/template.types'; import { PaginationOptions } from '../types/audience.types'; export declare class TemplatesService { private readonly httpClient; constructor(httpClient: HttpClientService); get(templateId: string): Promise; list(options: PaginationOptions): Promise; }