/**
 * Internal custom hook for managing input text area.
 */
export declare const useTextAreaInternal: () => {
    textAreaDisabled: boolean;
    setTextAreaDisabled: import("react").Dispatch<import("react").SetStateAction<boolean>>;
    textAreaSensitiveMode: boolean;
    setTextAreaSensitiveMode: import("react").Dispatch<import("react").SetStateAction<boolean>>;
    inputLength: number;
    setInputLength: import("react").Dispatch<import("react").SetStateAction<number>>;
    getTextAreaValue: () => string;
    setTextAreaValue: (value: string) => Promise<void>;
    updateTextAreaFocus: (currPath: string) => void;
    focusTextArea: () => void;
    blurTextArea: () => void;
    toggleTextAreaDisabled: () => void;
    toggleTextAreaSensitiveMode: () => void;
};
//# sourceMappingURL=useTextAreaInternal.d.ts.map