import { Email, EmailDB } from '../../types';
declare const addEmailRow: (time: string, messageOptions: Email) => void;
declare const getEmailRowsToBeSent: () => Promise<EmailDB[]>;
declare const getAllEmailRows: () => Promise<EmailDB[]>;
declare const setEmailSent: (id: number) => Promise<void>;
declare const clearAllRows: () => Promise<void>;
export { getAllEmailRows, setEmailSent, addEmailRow, getEmailRowsToBeSent, clearAllRows };
