import type { MessageData, RecipientEntry } from '../types.js'; export interface Props { /** Message to forward to recipients. */ originalMessage: MessageData; /** Called when user sends the forward. */ onsend?: (to: RecipientEntry[], body: string) => void; /** Called when user cancels the forward. */ oncancel?: () => void; } declare const ForwardForm: import("svelte").Component; type ForwardForm = ReturnType; export default ForwardForm; //# sourceMappingURL=ForwardForm.svelte.d.ts.map