import { BaseTemplateProvider } from "./base_template.provider"; export declare class PrintTemplateProvider extends BaseTemplateProvider { protected _settings: any; init(settings: any): Promise; send(data: any, template: any, profile: any, attachments?: any, settings?: 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; }