import React from "react"; interface RecipientListProps { to: string[]; cc: string[]; } declare const RecipientList: React.FC; export default RecipientList;