import { CombinedParticipant } from "./EmailEditor.definitions"; interface EmailParticipantsInputProps { toParticipants: CombinedParticipant[]; ccParticipants: CombinedParticipant[]; preserveParticipantList: boolean; onAddToParticipant: (address: string) => void; onDeleteToParticipant: (address: string) => void; onAddCCParticipant: (address: string) => void; onDeleteCCParticipant: (address: string) => void; } export declare const EmailParticipantsInput: (props: EmailParticipantsInputProps) => JSX.Element; export {};