//#region src/composables/useDoctype.d.ts
/**
 * Set the doctype for the current email template.
 *
 * Usage in SFC <script setup>:
 * ```ts
 * useDoctype('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">')
 * ```
 */
declare function useDoctype(doctype: string): void;
//#endregion
export { useDoctype };
//# sourceMappingURL=useDoctype.d.ts.map