import { type SvEditorProps } from './editor-contract'; type Props = SvEditorProps & { value?: string; onChange?: (value: string) => void; onCommit?: (value: string) => void; onCancel?: () => void; placeholder?: string; rows?: number; maxlength?: number; /** Grow the box to fit content instead of scrolling. */ autoGrow?: boolean; /** Show a "n / max" character counter (needs `maxlength`). */ showCount?: boolean; autofocus?: boolean; }; declare const SvTextArea: import("svelte").Component; type SvTextArea = ReturnType; export default SvTextArea;