import type { FileRowData } from '../../molecules/FileRow/FileRow.svelte'; interface EmailComposerProps { to?: string[]; cc?: string[]; subject?: string; body?: string; attachments?: FileRowData[]; loading?: boolean; class?: string; onsend?: (payload: { to: string[]; cc: string[]; subject: string; body: string; attachments: FileRowData[]; }) => void; } declare const EmailComposer: import("svelte").Component; type EmailComposer = ReturnType; export default EmailComposer;