interface MultiLineTextInputProps { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void; onCancel?: () => void; placeholder?: string; height?: number; } export declare function MultiLineTextInput({ value, onChange, onSubmit, onCancel, placeholder, height, }: MultiLineTextInputProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MultiLineTextInput.d.ts.map