import { KyInstance } from '@goatlab/js-utils'; import type { SendGridEmailResponse, SendgridHTMLEmailRequest } from './sendgrid.model'; export declare class SendgridService { sendgridApi: KyInstance | undefined; shouldSendEmail: boolean; fromEmail: string; constructor({ token, shouldSendEmail, fromEmail, }: { token: string; shouldSendEmail?: boolean; fromEmail: string; }); sendFinalizedEmail(request: SendgridHTMLEmailRequest): Promise; }