/** * Create the CSS styles using the settings. * * @param {Object} settings * @returns {string} the contents of the stylesheet */ export function createStyles(settings: any): string; export const madeInLoaderTemplate: '\n
\n\n
\n\t
\n\t\t
\n\t\t\t
\n\t\t\t\t{% if settings["formsmd-branding"] != "hide" %}\n\t\t\t\t{{ translations.madeInLoader | safe }}\n\t\t\t\t{% else %}\n\t\t\t\t
{{ translations.loading }}...
\n\t\t\t\t{% endif %}\n\t\t\t
\n\t\t\t
\n\t\t
\n\t
\n
\n'; /** * Create the body template. * * @param {Object} settings * @returns {{template: string, settings: Object}} the template and the * updated settings */ export function createBodyTemplate(settings: any): { template: string; settings: any; }; /** * Create the content template. * * @param {string} template * @param {Object} settings * @param {Object} data * @param {boolean} windowAndSanitize * @returns {{template: string, bindDivTemplates: Object}} template and bind *
templates */ export function createContentTemplate( template: string, settings: any, data: any, windowAndSanitize: boolean, ): { template: string; bindDivTemplates: any; };