export interface Props { /** Callback when a message is sent */ onsend: (content: string) => void; /** Placeholder text */ placeholder?: string; /** Disable the input */ disabled?: boolean; /** Reply context if replying to a message */ replyTo?: { id: string; senderName: string; content: string; } | null; /** Cancel reply callback */ oncancelreply?: () => void; } declare const MessageInput: import("svelte").Component; type MessageInput = ReturnType; export default MessageInput; //# sourceMappingURL=MessageInput.svelte.d.ts.map