import { PlazbotHttp } from './http';
import { PlazbotOptions, WhatsAppTemplate } from '../types';
export declare class Template extends PlazbotHttp {
    constructor(options: PlazbotOptions);
    getTemplates(): Promise<WhatsAppTemplate[]>;
    getActiveTemplates(): Promise<WhatsAppTemplate[]>;
    getTemplate(id: string): Promise<WhatsAppTemplate>;
}
