//#region src/helpers/emails.d.ts declare const defaultNewTemplateSource: string; declare const previewTemplateSource: string; declare const emptyEmailTheme: string; declare const LightEmailTheme = "import { Html, Head, Tailwind, Body, Container, Section } from '@react-email/components';\nimport { ThemeProps, ProjectLogo } from \"@stackframe/emails\";\n\nexport function EmailTheme({ children, unsubscribeLink, projectLogos }: ThemeProps) {\n return (\n \n \n \n \n
\n \n \n {children}\n \n
\n {unsubscribeLink && (\n
\n Click here to unsubscribe from these emails\n
\n )}\n \n
\n \n );\n}\n\nEmailTheme.PreviewProps = {\n unsubscribeLink: \"https://example.com\",\n} satisfies Partial\n"; declare const DEFAULT_EMAIL_THEME_ID = "1df07ae6-abf3-4a40-83a5-a1a2cbe336ac"; declare const DEFAULT_EMAIL_THEMES: { "1df07ae6-abf3-4a40-83a5-a1a2cbe336ac": { displayName: string; tsxSource: string; }; "a0172b5d-cff0-463b-83bb-85124697373a": { displayName: string; tsxSource: string; }; "c7e2d94f-8a1b-4e6d-b3f5-9d0a2e7c1b8f": { displayName: string; tsxSource: string; }; }; declare const DEFAULT_EMAIL_TEMPLATES: { "e7d009ce-8d47-4528-b245-5bf119f2ffa3": { displayName: string; tsxSource: string; themeId: undefined; }; "a70fb3a4-56c1-4e42-af25-49d25603abd0": { displayName: string; tsxSource: string; themeId: undefined; }; "822687fe-8d0a-4467-a0d1-416b6e639478": { displayName: string; tsxSource: string; themeId: undefined; }; "e84de395-2076-4831-9c19-8e9a96a868e4": { displayName: string; tsxSource: string; themeId: undefined; }; "066dd73c-36da-4fd0-b6d6-ebf87683f8bc": { displayName: string; tsxSource: string; themeId: undefined; }; "70372aee-0441-4d80-974c-2e858e40123a": { displayName: string; tsxSource: string; themeId: undefined; }; "f64b1afe-27ec-4a28-a277-7178f3261f9a": { displayName: string; tsxSource: string; themeId: undefined; }; }; declare const DEFAULT_TEMPLATE_IDS: { readonly email_verification: "e7d009ce-8d47-4528-b245-5bf119f2ffa3"; readonly password_reset: "a70fb3a4-56c1-4e42-af25-49d25603abd0"; readonly magic_link: "822687fe-8d0a-4467-a0d1-416b6e639478"; readonly team_invitation: "e84de395-2076-4831-9c19-8e9a96a868e4"; readonly sign_in_invitation: "066dd73c-36da-4fd0-b6d6-ebf87683f8bc"; readonly payment_receipt: "70372aee-0441-4d80-974c-2e858e40123a"; readonly payment_failed: "f64b1afe-27ec-4a28-a277-7178f3261f9a"; }; //#endregion export { DEFAULT_EMAIL_TEMPLATES, DEFAULT_EMAIL_THEMES, DEFAULT_EMAIL_THEME_ID, DEFAULT_TEMPLATE_IDS, LightEmailTheme, defaultNewTemplateSource, emptyEmailTheme, previewTemplateSource }; //# sourceMappingURL=emails.d.ts.map