import { IIemplateProvider } from "./template.interface"; export declare class BaseTemplateProvider implements IIemplateProvider { protected _settings: any; init(settings: any): Promise; send(data: any, template: any, profile: any): Promise; print(id: string, template: any, docRef: string, locale: string, profile: any, filters?: any, printData?: any, raw?: boolean): Promise; multiPrint(template: any, data: any, locale: string, profile: any): Promise; mergeFiles(template: any, files: any[]): Promise; layout(): Promise; }