import React from 'react';
import { TextAreaProps } from 'antd-mobile';
export interface SuperTextAreaProps extends TextAreaProps {
    /**
     * @description 去除头尾空格。
     * @default false
     */
    disabledWhiteSpace?: boolean;
}
declare const SuperTextArea: React.FC<SuperTextAreaProps>;
export default SuperTextArea;
