type CardTemplate = { Name: string; Front: string; Back: string; }; export type Model = { modelName: string; inOrderFields: string[]; css: string; cardTemplates: CardTemplate[]; }; export declare function updateTemplate(model: any): Promise; export declare function isTemplateInstalled(model: any): Promise; /** * Check if the template exists, if not create it, if it does exist update it */ export declare function createOrUpdateTemplates(): Promise; export {};